I'm trying to give my mobile users the choice to view the full website by loading a different page.

Thing is, jQtouch thoughtfully transforms links into ajax calls, so the user doesn't leave the page at all.

Is there some way to break out of jQt or exclude certain links from loading ajaxically?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

I had the same question.

Inspecting the source code reveals that you can explicitly add an attribute to stop the library trying to "ajaxify" a link:

target="_blank" is supported for opening links in new windows

rel="external" is supported for the same window.

link|improve this answer
rel="external"works fine on Safari on Windows, but not in iPad! – Josue Dec 7 '11 at 12:19
feedback

Just add target="_blank" to your external links and it should work.

http://code.google.com/p/jqtouch/issues/detail?id=9

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.