views:

215

answers:

2

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?

+1  A: 

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

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

joab
A: 

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.

Pete Montgomery