I am trying to retrieve the scroll position when a user navigates back in the browser history using HTML5 popstate handler.
Here is what I have:
$(docume
I managed to solve this one myself:
We must overwrite the current page on the history stack before navigating to the new page.
This allows us to store the scroll position and then pop it off the stack when we navigate back:
$('#link').click(function (e) {
//overwrite current entry in history to store the scroll position:
stateData = {
path: window.location.href,
scrollTop: $(window).scrollTop()
};
window.history.replaceState(stateData, 'title', 'page2.html');
//load new page:
stateData = {
path: window.location.href,
scrollTop: 0
};
window.history.pushState(stateData, 'title', 'page2.html');
e.preventDefault();
});