Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
@m90 blackberry5 supports XMLHttpRequest link. But if I use above window.location to navigate to other page then back button in header is not working on any platform also in android. And if I use $.mobile.changePage then it works fine. – PPD Jul 23 '12 at 11:05
Anyone have idea why back button is not working using window.location – PPD Jul 24 '12 at 4:19
You could try the same thing in Chrome or whatever that has a proper console (idk if BB has some debugger). – EricG Jul 24 '12 at 12:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.