onpopstate event
An event handler that is fired when changes are made to the active history. Calls to pushState or replaceState can trigger this event.
Syntax
HTML Attribute | <element onpopstate = "handler(event)"> |
Event Property | object.onpopstate = handler; |
attachEvent Method | object.attachEvent("onpopstate", handler) |
addEventListener Method | object.addEventListener("popstate", handler, useCapture) |
Event handler parameters
val [in]
Type: FunctionA script function to do something when the event is fired.