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.
pjax:popstateevent 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