Is there some event I can subscribe to when the history state is modified? How?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

The onpopstate event should be fired when the history changes, you can bind to it in your code like this:

window.onpopstate = function (event) {
  // do stuff here
}

This event may also be fired when the page loads, you can determine whether the event was fired from a page load, or by using pushState/replaceState by checking the event object for a state property, it will be undefined if the event was caused by a page load

window.onpopstate = function (event) {
  if (event.state) {
    // history changed because of pushState/replaceState
  } else {
    // history changed because of a page load
  }
}

There currently is no onpushstate event unfortunately, to get around this you need to wrap both the pushState and replaceState methods to implement your own onpushstate event.

I have a library that makes working with pushState a bit easier, it might be worth checking it out called Davis.js, it provides a simple api for working with routing based on pushState.

link|improve this answer
It seems that event.state might still be set on page load (Chrome). – GolezTrol Jul 20 '11 at 15:29
feedback

Have a look here, the onpopstate event and a nice little problem of different behavior of it in different browsers explained at the same time:

HTML5 onpopstate on page load

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.