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?
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 windowsrel="external"is supported for the same window.