how to load an external page (or force non-ajax reload)?
I try to let users click on the title bar (the middle portion) and force a reload of the page.
so on the title bar
<h1 onclick="$.mobile.pageContainer.pagecontainer("change", "index.php",{allowSamePageTransition:true,
changeHash:true,
data:null,
reload:true,
showLoadMsg:true,
transition:"pop",
type:"GET"});">Title</h1>
the problem is that since i set the page's data-dom-cache="true", even if I have reload=true, it does not reload the page again. i think for a <a> link, there is a way to force non-ajax reload. is it possible to force non-ajax reload from javascript?
thanks all.