storagecommit | onstoragecommit event
Fires when a local Web Storage area is written to disk.
![]() |
Syntax
| HTML Attribute | <element onstoragecommit = "handler(event)"> |
|---|---|
| Event Property | object.onstoragecommit = handler; |
| attachEvent Method | object.attachEvent("onstoragecommit", handler) |
| addEventListener Method | object.addEventListener("storagecommit", handler, useCapture) |
Event information
| Synchronous | No |
|---|---|
| Bubbles | No |
| Cancelable | No |
Event handler parameters
- pEvtObj [in]
-
Type: IHTMLEventObj
Standards information
There are no standards that apply here.
Remarks
Local storage is saved to disk asynchronously to improve performance. The onstoragecommit event can be used to determine when the disk storage has been updated.
To invoke this event, do one of the following:
- Set or update a local storage value with setItem.
- Remove a local storage value with removeItem.
See also
Show:
