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.

I'm building a article listing and when a visitor click on a article my site loads in the full article with help of ajax and make a pushState with the article url to example article.php?id=55 so when a visitor refresh or visit the url they will land on the "article item" page instead of the list page.

But now to my problem when a visitor refresh my page when the url have been changed he land on the "article item" page as i wont but if he wants go back to my article listing by pressing the back button nothing happens, and i have no good idea to solve this problem.

I know that popState gets triggered when someone click on back button so i can always set a regexp there and redirect the user but it does not feel correct.

Have someone here played around with history.js or native history (html5)? I appreciate all the help, just shoot!

Example:

$(".list-item a").click(function(e){
      e.preventDefault();
      History.pushState(null, $(this).text(), $(this).attr('href'));
      div = this;
});

Live example. Githubs trees https://github.com/blog/760-the-tree-slider.

EDIT: Have tested alot of shit now but dont get it to work. One solution is to use History.replaceState(null, null, location.href); location.reload();

Inside my "item.php" but this code should just get trigged when i press back button. But when i lissen on popstate it's get triggered on init.

share|improve this question
Can you make this someone else's problem by using jquery-pjax. In your case the fragment option might be required. – Sean Hogan Aug 28 '12 at 0:17
Thanks but this is not a option for me and the back button with pjax didn't work so well. Bc i need to lissen on popstate at my article listing bc i got some animations and other related events that happend. – Rond Sep 4 '12 at 13:58
There are lots of sites using jquery-pjax so I'd be surprised if the back-button failure is in the pjax code. There is a discussion about pjax animation on the project site. jquery-pjax also generates a pjax:popstate event if you need it. I'm not a jquery or pjax fan but it's usually better than rolling your own. – Sean Hogan Sep 5 '12 at 2:40

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.