Is there some event I can subscribe to when the history state is modified? How?
|
feedback
|
|
The onpopstate event should be fired when the history changes, you can bind to it in your code like this:
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
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. | ||||
|
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: | |||
|
feedback
|