I have a simple web page, namely:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>History hacks</title>
<script>
window.onpopstate = function (e) {
alert("location: " + document.location + ", state: " + JSON.stringify(e.state));
}
window.onload = function (e) {
alert('page loaded');
}
</script>
</head>
<body>
<p> <a href="http://www.yahoo.com">Yahoo</a> <a href="#part1">Part 1</a></p>
</body>
</html>
Now there are a number of differences regarding how Chrome and Firefox trigger the popstate
event (I shudder to think what I'm up against when I get around to testing IE), but one that's giving me problems here is that Chrome will trigger a popstate
event whenever I click on either of those two links, and then again when I hit the back button. Firefox will trigger the event for the link that changes the hash part (only the first time though if the hash link is the same), and won't trigger it at all if I click on the Yahoo link and then click the back button.
So is there a way that I can tell in Firefox that a user has just clicked back and landed back on my page from a completely different site on a different domain? Is there another event that would work for this purpose in Firefox? (The load event does not get triggered either when I go back from yahoo.com.)
You're presumably looking for the
pageshow
event if you want to be notified when your page is shown when going back even if it got cached in the page cache.Note that if there is no load event that also means the page still has exactly the same DOM and script execution environment it did when it was navigated away from. Basically it's as if the user switched tabs for a while, as opposed to navigating.
So given that, do you still want to get an event in that situation? Do you get events you look for when the user switches back to the tab with your page in it?