0 out of 1 rated this helpful - Rate this topic

popstate | 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.

Internet Explorer 10

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: Function

A script function to do something when the event is fired.

See also

HTMLBodyElement

 

 

Send comments about this topic to Microsoft

Build date: 1/23/2013

Community Additions

ADD
© 2013 Microsoft. All rights reserved.