The success handler is executed when a request succeed.
General info
- Specification
- IndexedDB
- Interface
- Event
- Bubbles
- No
- Cancelable
- No
- Target
- IDBFactory, IDBRequest
- Default Action
- None
Properties
| Property | Type | Description | 
|---|---|---|
| targetRead only | EventTarget | The request concerned by this event | 
| typeRead only | DOMString | The type of event. | 
| bubblesRead only | boolean | Does the event normally bubble? | 
| cancelableRead only | boolean | Is it possible to cancel the event? | 
Example
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;
});