Initializes the properties of a PopStateEvent.
Method of dom/PopStateEventdom/PopStateEvent
Syntaxvar object = object.initPopStateEvent();
Parameters typeArg
The type of the event being created.
canBubbleArgIndicates whether the event can bubble. When true, the event propagates upward. When false, the event does not propagate upward.
cancelableArgIndicates whether the event’s default action can be prevented. When true, the default action can be canceled. When false, the default action cannot be canceled.
stateArgThe object to be applied to the state property.
Return ValueReturns an object of type DOM NodeDOM Node
Type: HRESULT
This method can return one of these values.
S_OK
Examplesvar evt = document.createEvent("PopStateEvent");
evt.initPopStateEvent("popstate", false, false, { .. state object ..});
window.dispatchEvent(evt);
Notes Remarks
Initializes attributes of an event created through the createEvent method. This method can only be called before the event has been dispatched via the dispatchEvent method. If the method is called several times before invoking dispatchEvent, only the final invocation takes precedence. This method has no effect if called after the event has been dispatched.
Syntaxvar retval = PopStateEvent.initPopStateEvent(typeArg, canBubbleArg, cancelableArg, stateArg);
AttributionsMicrosoft Developer Network: [initPopStateEvent Method Article]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4