IDBVersionChangeEvent: IDBVersionChangeEvent() constructor - Web APIs | MDN
Syntax
js
new IDBVersionChangeEvent(type)
new IDBVersionChangeEvent(type, options)
Parameters
type-
A string with the name of the event. It is case-sensitive and browsers set it to
versionchange,success, orblocked. optionsOptional-
An object that, in addition of the properties defined in
Event(), can have the following properties:oldVersionOptional-
A number representing the previous version of the database. It defaults to
0. newVersionOptional-
An unsigned long representing the new version of the database, or
nullif the database is being deleted. It defaults isnull.
Return value
A new IDBVersionChangeEvent object.
Examples
For a full working example, see our To-do Notifications app (view example live).
Specifications
| Specification |
|---|
| Indexed Database API 3.0 # dom-idbversionchangeevent-idbversionchangeevent |