You can manually change the page and set this flag in the options object:
reloadPage (boolean, default: false) Forces a reload of a page, even
if it is already in the DOM of the page container. Used only when the
'to' argument of changePage() is a URL.
Source: http://jquerymobile.com/demos/1.1.0/docs/api/methods.html
Example:
<a data-role="button" href="/do-something.aspx">Click ME</a>
<script>
//bind to link elements for the click event
$('a').on('click', function () {
//manually change page to the clicked HREF
$.mobile.changePage(this.href, {
//set the reloadPage flag to true so jQuery Mobile will update the page
reloadPage : true
});
//stop the default behavior of the link
return false;
});
</script>
By default jQuery Mobile looks first at the current DOM to see if a version of the requested page exists, if it does, jQuery Mobile just navigates to that page without loading any more external assets.