Fires when a Web Storage area is updated.
Syntax
| HTML Attribute |
<element onstorage = "handler(event)">
|
| Event Property |
object.onstorage = handler;
|
| attachEvent Method |
object.attachEvent("onstorage", handler)
|
| addEventListener Method |
object.addEventListener("storage", handler, useCapture)
|
Standards information
Event information
| Synchronous | No |
| Bubbles | No |
| Cancelable | No |
Event handler parameters
- pEvtObj [in]
-
Type: IHTMLEventObj
Remarks
The url property of the event specifies the URL of the Web page that made the update.
For Windows Internet Explorer 9 standards mode, onstorage will only fire on window objects. Handlers attached to document.body or document objects will not receive the event. (Note this does not apply to the onstoragecommit event.)
The onstorage event will only fire on window objects. Handlers attached to document.body or document objects will not receive the event. (Note this does not apply to the onstoragecommit event.)
The onstorage event is specified in the W3C Web Storage specification.
To invoke this event, do one of the following:
- Set or update a session or local storage value with setItem.
- Remove a session or local storage value with removeItem.
See also
-
document
-
frameSet
-
window
-
Introduction to DOM Storage
Send comments about this topic to Microsoft
Build date: 3/14/2012