I’m coding a web app for Document Managers using jQtouch and have made a ‘Top Searches’ part of it. You can see the whole thing at http://dl.dropbox.com/u/97184921/Project/index.html
The following code is supposed to show a unordered list (which it does) with the two items – onen linking to Google and the other to BBC as test websites. They should both have thumbnails and they are displayed, but it doesn’t seem to send the user to either Google or BBC when the links are clicked. Can anyone help?
<li><a href = "http://www.google.co.uk/"><img height = "20" width = "20" src = "images/search.png">google</a></li>
<li><a href = "http://www.bbc.co.uk/"><img height = "20" width = "20" src = "images/search.png">bbc</a></li>
On the jqtouch site they suggest that you use
target="_blank"when opening external links.If you’d like to open the link in the same window, try
rel="external"source
better source with more info