I'm writing a single-page web application that uses HTML5 push state (Falling back to hash tags) to handle client side navigation.
One of the things I've noticed is that if a user scrolls down the page and then clicks a link to another page, when they navigate to that page the browser will still remain in the scrolled position.
I wanted to that if you went to a new page it would smooth scroll you to the top (Same behavior as all websites when following links).
I achieved this with a little jquery animation in my navigation controller, the problem I now have is that if you click the browser back button you wont end up in the scrolled position that you were on previously, instead you will be on the previous page but you'll be scrolled to the top.
Is it possible to detect if the last/current client side navigation was caused by the back or forward buttons of the browser? If so I will use this to prevent the scrolling.
Cheers