The success
handler is executed when a request succeed.
General infoEdit
- Specification
- IndexedDB
- Interface
- Event
- Bubbles
- No
- Cancelable
- No
- Target
- IDBFactory, IDBRequest
- Default Action
- None
PropertiesEdit
Property | Type | Description |
---|---|---|
target Read only |
EventTarget |
The request concerned by this event |
type Read only |
DOMString |
The type of event. |
bubbles Read only |
boolean |
Does the event normally bubble? |
cancelable Read only |
boolean |
Is it possible to cancel the event? |
ExampleEdit
var request = indexedDB.open("addressbook", 3);
// using the onsuccess handler to access a database, once open
request.onsuccess = function( event ) {
var addressbookDB = event.target.result;
}
// which is equivalent to
request.addEventListener("success", function( event ) {
var addressbookDB = event.target.result;
});