I am trying to get an alert to fire when I press back to get to a page from a hash. I'm using the following code
if(window.location.hash) {
} else {
alert('test');
}
If I'm at http://someurl.com/#somehash and I press the browser back button to get back to http://someurl.com/ the alert doesn't fire.
Is there any way to make that work, or am I misunderstanding something?
Thanks a lot!