Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using jQuery mobile to show a listings page. When the page is first loaded some default HTML is in place. Then when the document is ready, an ajax query is fired off, the HTML it returned and inserted into the page.

When you then click on on of the list items it takes you to a details page. From there if I click the browser back button it returns to the listing page but the HTML I loaded from the ajax call is not there anyone, only the original default HTML.

Any idea why?

Edit (to help clarify the problem):

On the listing page I'm running this:

setInterval(function() { console.log("1 second"); }, 1000);

If I navigate to other pages with data-ajax="true" the time will start again on each page. If I go to a page with data-ajax="false" and then hit Chrome's back button the above Interval call won't start again. The page only shows the initial static HTML and doesn't trigger any inline javascript or appear to make any event calls.

share|improve this question
Are you reading the URL anchors or something similar to load the appropriate page? If you don't, pressing back usually reloads the page. If you do, you need to make sure to always look for changes in the URL and reload what you need. Maybe cache it in the page – henasraf May 21 '12 at 12:27
Give us some of your code. Without the code I can only guess whats going on in your situation. – codaniel May 21 '12 at 12:32

1 Answer

Try adding this:

<body onunload="">

It will trigger a reload.

share|improve this answer
No luck. I added the following to the page code and it doesn't start again when I return to the page with Chrome's back button: setInterval(function() {console.log("1 second");}, 1000); – Mark L May 21 '12 at 12:39

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.