window.parent.document.location.reload(); i think may work with jQuery. Set up a bind for the back button.
or throw this
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
in the head of the first page so it expires and will auto refresh
however I am not 100% sure that will work with firefox. It seems to work with
IE.
I think you could also open a page without AJAX by making the rel = external
<a href="../index.html" data-icon="grid"
class="ui-btn-right" rel="external">Home</a>
that an old school way to do it.
Also This is a very useful link explaining how jquery can accomplish this in most browsers
. Probaly a more optimal solution rather then my hacks.