Hi all for page navigation we use $.mobile.changePage('test.html') which uses ajax. I want to without ajax therefore I tried with window.location = "test.html";. Here it goes to test.html but in test.html I have
<div data-role="header" align="center">
<a href="#" data-rel="back" data-icon="arrow-l">Back</a>
<h1>Test</h1>
<a href="MainMenu.html" data-icon="grid">Menu</a>
</div>
But Now here back button is not working. why is it so? I don't want to use ajax because $.mobile.changePage not work in blackberry5. therefore I use window.location but using this back button is not work. Is there ia nay other solution? any suggestion will be appreciated. Thanks in advance.