I\'m setting the URL after the hashmark with a jquery click event. The URL is getting set properly but when I use the browsers back button it doesn\'t take me to the previous p
You could code something like this:
var _hash = ''; function myHashChangeCallback(hash) { // handle hash change // load some page using ajax, etc } function hashCheck() { var hash = window.location.hash; if (hash != _hash) { _hash = hash; myHashChangeCallback(hash); } } setInterval(hashCheck, 100);