Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 1115319 of Event reference

  • Revision slug: Web/Events
  • Revision title: Event reference
  • Revision id: 1115319
  • Created:
  • Creator: shtarbanov
  • Is current revision? No
  • Comment
Tags: 

Revision Content

{{EventRef}}

DOM Events are sent to notify code of interesting things that have taken place. Each event is represented by an object which is based on the {{domxref("Event")}} interface, and may have additional custom fields and/or functions used to get additional information about what happened. Events can represent everything from basic user interactions to automated notifications of things happening in the rendering model.

This article offers a list of events that can be sent; some are standard events defined in official specifications, while others are events used internally by specific browsers; for example, Mozilla-specific events are listed so that add-ons can use them to interact with the browser.

Most Common Categories

Resource Events
Event Name Fired When
{{event("cached")}} The resources listed in the manifest have been downloaded, and the application is now cached.
{{event("error")}} A resource failed to load.
{{event("abort")}} The loading of a resource has been aborted.
{{event("load")}} A resource and its dependent resources have finished loading.
{{event("beforeunload")}} The window, the document and its resources are about to be unloaded.
{{event("unload")}} The document or a dependent resource is being unloaded.
Network Events
Event Name Fired When
{{event("online")}} The browser has gained access to the network.
{{event("offline")}} The browser has lost access to the network.
Focus Events
Event Name Fired When
{{event("focus")}} An element has received focus (does not bubble).
{{event("blur")}} An element has lost focus (does not bubble).
Websocket Events
Event Name Fired When
open A WebSocket connection has been established.
message A message is received through a WebSocket.
{{event("error")}} A WebSocket connection has been closed with prejudice (some data couldn't be sent for example).
close A WebSocket connection has been closed.
Form Events
Event Name Fired When
{{event("reset")}} The reset button is pressed
{{event("submit")}} The submit button is pressed
Printing Events
Event Name Fired When
{{event("beforeprint")}} The print dialog is opened
{{event("afterprint")}} The print dialog is closed
Text Composition Events
Event Name Fired When
{{event("compositionstart")}} The composition of a passage of text is prepared (similar to keydown for a keyboard input, but works with other inputs such as speech recognition).
{{event("compositionupdate")}} A character is added to a passage of text being composed.
{{event("compositionend")}} The composition of a passage of text has been completed or canceled.
View Events
Event Name Fired When
{{event("fullscreenchange")}} An element was turned to fullscreen mode or back to normal mode.
{{event("fullscreenerror")}} It was impossible to switch to fullscreen mode for technical reasons or because the permission was denied.
{{event("resize")}} The document view has been resized.
{{event("scroll")}} The document view or an element has been scrolled.
Clipboard Events
Event Name Fired When
{{event("cut")}} The selection has been cut and copied to the clipboard
{{event("copy")}} The selection has been copied to the clipboard
{{event("paste")}} The item from the clipboard has been pasted
Keyboard Events
Event Name Fired When
{{event("keydown")}} ANY key is pressed
{{event("keypress")}} ANY key except Shift, Fn, CapsLock is in pressed position. (Fired continously.)
{{event("keyup")}} ANY key is released
Mouse Events
Event Name Fired When
{{event("mouseenter")}} A pointing device is moved onto the element that has the listener attached.
{{event("mouseover")}} A pointing device is moved onto the element that has the listener attached or onto one of its children.
{{event("mousemove")}} A pointing device is moved over an element. (Fired continously as the mouse moves.)
{{event("mousedown")}} A pointing device button (ANY button) is pressed on an element.
{{event("mouseup")}} A pointing device button (ANY button) is released over an element.
{{event("click")}} A pointing device button (ANY button) has been pressed and released on an element.
{{event("dblclick")}} A pointing device button is clicked twice on an element.
{{event("contextmenu")}} The right button of the mouse is clicked (before the context menu is displayed).
{{event("wheel")}} A wheel button of a pointing device is rotated in any direction.
{{event("mouseleave")}} A pointing device is moved off the element that has the listener attached.
{{event("mouseout")}} A pointing device is moved off the element that has the listener attached or off one of its children.
{{event("select")}} Some text is being selected.
{{event("pointerlockchange")}} The pointer was locked or released.
{{event("pointerlockerror")}} It was impossible to lock the pointer for technical reasons or because the permission was denied.
Drag & Drop Events
Event Name Fired When
{{event("dragstart")}} The user starts dragging an element or text selection.
{{event("drag")}} An element or text selection is being dragged (Fired continuously every 350ms).
{{event("dragend")}} A drag operation is being ended (by releasing a mouse button or hitting the escape key).
{{event("dragenter")}} A dragged element or text selection enters a valid drop target.
{{event("dragover")}} An element or text selection is being dragged over a valid drop target. (Fired continuously every 350ms.)
{{event("dragleave")}} A dragged element or text selection leaves a valid drop target.
{{event("drop")}} An element is dropped on a valid drop target.
Media Events
Event Name Fired When
{{event("durationchange")}} The duration attribute has been updated.
{{event("loadedmetadata")}} The metadata has been loaded.
{{event("loadeddata")}} The first frame of the media has finished loading.
{{event("canplay")}} The user agent can play the media, but estimates that not enough data has been loaded to play the media up to its end without having to stop for further buffering of content.
{{event("canplaythrough")}} The user agent can play the media, and estimates that enough data has been loaded to play the media up to its end without having to stop for further buffering of content.
{{event("ended")}} Playback has stopped because the end of the media was reached.
{{event("emptied")}} The media has become empty; for example, this event is sent if the media has already been loaded (or partially loaded), and the load() method is called to reload it.
{{event("stalled")}} The user agent is trying to fetch media data, but data is unexpectedly not forthcoming.
{{event("suspend")}} Media data loading has been suspended.
{{event("play")}} Playback has begun.
{{event("playing")}} Playback is ready to start after having been paused or delayed due to lack of data.
{{event("pause")}} Playback has been paused.
{{event("waiting")}} Playback has stopped because of a temporary lack of data.
{{event("seeking")}} A seek operation began.
{{event("seeked")}} A seek operation completed.
{{event("ratechange")}} The playback rate has changed.
{{event("timeupdate")}} The time indicated by the currentTime attribute has been updated.
{{event("volumechange")}} The volume has changed.
{{event("complete")}} The rendering of an {{domxref("OfflineAudioContext")}} is terminated.
{{event("ended_(Web_Audio)", "ended")}} Playback has stopped because the end of the media was reached.
{{event("audioprocess")}} The input buffer of a {{domxref("ScriptProcessorNode")}} is ready to be processed.
Progress Events
Event Name Fired When
{{event("loadstart")}} Progress has begun.
{{event("progress")}} In progress.
{{event("error")}} Progression has failed.
{{event("timeout")}} Progression is terminated due to preset time expiring.
abort Progression has been terminated (not due to an error).
load Progression has been successful.
{{event("loadend")}} Progress has stopped (after "error", "abort" or "load" have been dispatched).
Session History Events
Event Nam Fired When
{{event("pagehide")}} A session history entry is being traversed from.
{{event("pageshow")}} A session history entry is being traversed to.
{{event("popstate")}} A session history entry is being navigated to (in certain cases).
CSS Animation Events
Event Name Fired When
{{event("animationstart")}} A CSS animation has started.
{{event("animationend")}} A CSS animation has completed.
{{event("animationiteration")}} A CSS animation is repeated.

Storage events

{{event("change")}} (see {{anch("Non-standard events")}})
{{event("storage")}}

Update events

{{event("checking")}}
{{event("downloading")}}
{{event("error")}}
{{event("noupdate")}}
{{event("obsolete")}}
{{event("updateready")}}

Value change events

{{event("broadcast")}}
{{event("CheckboxStateChange")}}
{{event("hashchange")}}
{{event("input")}}
{{event("RadioStateChange")}}
{{event("readystatechange")}}
{{event("ValueChange")}}

Uncategorized events

{{event("invalid")}}
{{event("localized")}}
message
message
message
open
{{event("show")}}

Less Common and NonStandard Categories

SVG events

{{event("SVGAbort")}}
{{event("SVGError")}}
{{event("SVGLoad")}}
{{event("SVGResize")}}
{{event("SVGScroll")}}
{{event("SVGUnload")}}
{{event("SVGZoom")}}

Database events

abort
blocked
complete
{{event("error")}} (link)
success
upgradeneeded
versionchange

Notification events

AlertActive
AlertClose

CSS events

CssRuleViewRefreshed
CssRuleViewChanged
CssRuleViewCSSLinkClicked
{{event("transitionend")}}

Script events

{{event("afterscriptexecute")}}
{{event("beforescriptexecute")}}

{{event("DOMMenuItemActive")}}
{{event("DOMMenuItemInactive")}}

Window events

DOMWindowCreated
DOMTitleChanged
DOMWindowClose
SSWindowClosing
SSWindowStateReady
SSWindowStateBusy
close

Document events

DOMLinkAdded
DOMLinkRemoved
DOMMetaAdded
DOMMetaRemoved
DOMWillOpenModalDialog
OMModalDialogClosed

{{event("popuphidden")}}
{{event("popuphiding")}}
{{event("popupshowing")}}
{{event("popupshown")}}
DOMPopupBlocked

Tab events

TabOpen
TabClose
TabSelect
TabShow
TabHide
TabPinned
TabUnpinned
SSTabClosing
SSTabRestoring
SSTabRestored
{{event("visibilitychange")}}

Battery events

{{event("chargingchange")}}
{{event("chargingtimechange")}}
{{event("dischargingtimechange")}}
{{event("levelchange")}}

Call events

{{event("alerting")}}
{{event("busy")}}
{{event("callschanged")}}
{{event("cfstatechange")}}
{{event("connected")}}
{{event("connecting")}}
{{event("dialing")}}
{{event("disconnected")}}
{{event("disconnecting")}}
{{event("error_(Telephony)","error")}}
{{event("held")}}, {{event("holding")}}
{{event("incoming")}}
{{event("resuming")}}
{{event("statechange")}}
{{event("voicechange")}}

Sensor events

{{event("compassneedscalibration")}}
{{event("devicelight")}}
{{event("devicemotion")}}
{{event("deviceorientation")}}
{{event("deviceproximity")}}
{{event("MozOrientation")}}
{{event("orientationchange")}}
{{event("userproximity")}}

Smartcard events

{{event("icccardlockerror")}}
{{event("iccinfochange")}}
{{event("smartcard-insert")}}
{{event("smartcard-remove")}}
{{event("stkcommand")}}
{{event("stksessionend")}}
{{event("cardstatechange")}}

SMS and USSD events

{{event("delivered")}}
{{event("received")}}
{{event("sent")}}
{{event("ussdreceived")}}

Frame events

{{event("mozbrowserclose")}}
{{event("mozbrowsercontextmenu")}}
{{event("mozbrowsererror")}}
{{event("mozbrowsericonchange")}}
{{event("mozbrowserlocationchange")}}
{{event("mozbrowserloadend")}}
{{event("mozbrowserloadstart")}}
{{event("mozbrowseropenwindow")}}
{{event("mozbrowsersecuritychange")}}
{{event("mozbrowsershowmodalprompt")}} (link)
{{event("mozbrowsertitlechange")}}
DOMFrameContentLoaded

DOM mutation events

DOMAttributeNameChanged
DOMAttrModified
DOMCharacterDataModified
{{event("DOMContentLoaded")}}
DOMElementNameChanged
DOMNodeInserted
DOMNodeInsertedIntoDocument
DOMNodeRemoved
DOMNodeRemovedFromDocument
DOMSubtreeModified

Touch events

MozEdgeUIGesture
MozMagnifyGesture
MozMagnifyGestureStart
MozMagnifyGestureUpdate
MozPressTapGesture
MozRotateGesture
MozRotateGestureStart
MozRotateGestureUpdate
MozSwipeGesture
MozTapGesture
MozTouchDown
MozTouchMove
MozTouchUp
{{event("touchcancel")}}
{{event("touchend")}}
{{event("touchenter")}}
{{event("touchleave")}}
{{event("touchmove")}}
{{event("touchstart")}}

Pointer events

{{event("pointerover")}}
{{event("pointerenter")}}
{{event("pointerdown")}}
{{event("pointermove")}}
{{event("pointerup")}}
{{event("pointercancel")}}
{{event("pointerout")}}
{{event("pointerleave")}}
{{event("gotpointercapture")}}
{{event("lostpointercapture")}}

Standard events

These events are defined in official Web specifications, and should be common across browsers. Each event is listed along with the interface representing the object sent to recipients of the event (so you can find information about what data is provided with each event) as well as a link to the specification or specifications that define the event.

Event Name Event Type Specification Fired when...
{{event("abort")}} {{domxref("UIEvent")}} DOM L3 The loading of a resource has been aborted.
abort {{domxref("ProgressEvent")}} Progress and XMLHttpRequest Progression has been terminated (not due to an error).
abort {{domxref("Event")}} IndexedDB A transaction has been aborted.
{{event("afterprint")}}{{gecko_minversion_inline("6")}} {{domxref("Event")}} HTML5 The associated document has started printing or the print preview has been closed.
{{event("animationend")}} {{domxref("AnimationEvent")}} CSS Animations A CSS animation has completed.
{{event("animationiteration")}} {{domxref("AnimationEvent")}} CSS Animations A CSS animation is repeated.
{{event("animationstart")}} {{domxref("AnimationEvent")}} CSS Animations A CSS animation has started.
{{event("audioprocess")}} {{domxref("AudioProcessingEvent")}} {{SpecName('Web Audio API', '#AudioProcessingEvent', 'audioprocess')}} The input buffer of a {{domxref("ScriptProcessorNode")}} is ready to be processed.
{{event("audioend")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} The user agent has finished capturing audio for speech recognition.
{{event("audiostart")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} The user agent has started to capture audio for speech recognition.
{{event("beforeprint")}} {{gecko_minversion_inline("6")}} {{domxref("Event")}} HTML5 The associated document is about to be printed or previewed for printing.
{{event("beforeunload")}} {{domxref("BeforeUnloadEvent")}} HTML5 The window, the document and its resources are about to be unloaded.
{{event("beginEvent")}} {{domxref("TimeEvent")}} SVG A SMIL animation element begins.
blocked   IndexedDB An open connection to a database is blocking a versionchange transaction on the same database.
{{event("blur")}} {{domxref("FocusEvent")}} DOM L3 An element has lost focus (does not bubble).
{{event("boundary")}} {{experimental_inline}} {{domxref("SpeechSynthesisEvent")}} {{SpecName('Web Speech API')}} The spoken utterance reaches a word or sentence boundary
{{event("cached")}} {{domxref("Event")}} Offline The resources listed in the manifest have been downloaded, and the application is now cached.
{{event("canplay")}} {{domxref("Event")}} HTML5 media The user agent can play the media, but estimates that not enough data has been loaded to play the media up to its end without having to stop for further buffering of content.
{{event("canplaythrough")}} {{domxref("Event")}} HTML5 media The user agent can play the media up to its end without having to stop for further buffering of content.
{{event("change")}} {{domxref("Event")}} DOM L2, HTML5 The change event is fired for {{HTMLElement("input")}}, {{HTMLElement("select")}}, and {{HTMLElement("textarea")}} elements when a change to the element's value is committed by the user.
{{event("chargingchange")}} {{domxref("Event")}} Battery status The battery begins or stops charging.
{{event("chargingtimechange")}} {{domxref("Event")}} Battery status The chargingTime attribute has been updated.
{{event("checking")}} {{domxref("Event")}} Offline The user agent is checking for an update, or attempting to download the cache manifest for the first time.
{{event("click")}} {{domxref("MouseEvent")}} DOM L3 A pointing device button has been pressed and released on an element.
close {{domxref("Event")}} WebSocket A WebSocket connection has been closed.
complete   IndexedDB A transaction successfully completed.
{{event("complete")}} {{domxref("OfflineAudioCompletionEvent")}} {{SpecName('Web Audio API', '#OfflineAudioCompletionEvent-section', 'OfflineAudioCompletionEvent')}} The rendering of an {{domxref("OfflineAudioContext")}} is terminated.
{{event("compositionend")}}{{gecko_minversion_inline("9")}} {{domxref("CompositionEvent")}} DOM L3 The composition of a passage of text has been completed or canceled.
{{event("compositionstart")}}{{gecko_minversion_inline("9")}} {{domxref("CompositionEvent")}} DOM L3 The composition of a passage of text is prepared (similar to keydown for a keyboard input, but works with other inputs such as speech recognition).
{{event("compositionupdate")}}{{gecko_minversion_inline("9")}} {{domxref("CompositionEvent")}} DOM L3 A character is added to a passage of text being composed.
{{event("contextmenu")}} {{domxref("MouseEvent")}} HTML5 The right button of the mouse is clicked (before the context menu is displayed).
{{event("copy")}} {{domxref("ClipboardEvent")}} Clipboard The text selection has been added to the clipboard.
{{event("cut")}} {{domxref("ClipboardEvent")}} Clipboard The text selection has been removed from the document and added to the clipboard.
{{event("dblclick")}} {{domxref("MouseEvent")}} DOM L3 A pointing device button is clicked twice on an element.
{{event("devicechange")}} {{domxref("Event")}} {{SpecName("Media Capture")}} A media device such as a camera, microphone, or speaker is connected or removed from the system.
{{event("devicelight")}} {{domxref("DeviceLightEvent")}} Ambient Light Events Fresh data is available from a light sensor.
{{event("devicemotion")}} {{domxref("DeviceMotionEvent")}} Device Orientation Events Fresh data is available from a motion sensor.
{{event("deviceorientation")}} {{domxref("DeviceOrientationEvent")}} Device Orientation Events Fresh data is available from an orientation sensor.
{{event("deviceproximity")}} {{domxref("DeviceProximityEvent")}} Proximity Events Fresh data is available from a proximity sensor (indicates an approximated distance between the device and a nearby object).
{{event("dischargingtimechange")}} {{domxref("Event")}} Battery status The dischargingTime attribute has been updated.
DOMActivate {{deprecated_inline}} {{domxref("UIEvent")}} DOM L3 A button, link or state changing element is activated (use {{event("click")}} instead).
DOMAttributeNameChanged {{deprecated_inline}} {{domxref("MutationNameEvent")}} DOM L3 {{removed_inline}} The name of an attribute changed (use mutation observers instead).
DOMAttrModified {{deprecated_inline}} {{domxref("MutationEvent")}} DOM L3 The value of an attribute has been modified (use mutation observers instead).
DOMCharacterDataModified {{deprecated_inline}} {{domxref("MutationEvent")}} DOM L3 A text or another CharacterData has changed (use mutation observers instead).
{{event("DOMContentLoaded")}} {{domxref("Event")}} HTML5 The document has finished loading (but not its dependent resources).
DOMElementNameChanged {{deprecated_inline}} {{domxref("MutationNameEvent")}} DOM L3 {{removed_inline}} The name of an element changed (use mutation observers instead).
DOMFocusIn {{deprecated_inline}} {{notimplemented_inline}} {{domxref("FocusEvent")}} DOM L3 An element has received focus (use {{event("focus")}} or {{event("focusin")}} instead).
DOMFocusOut {{deprecated_inline}} {{notimplemented_inline}} {{domxref("FocusEvent")}} DOM L3 An element has lost focus (use {{event("blur")}} or {{event("focusout")}} instead).
DOMNodeInserted {{deprecated_inline}} {{domxref("MutationEvent")}} DOM L3 A node has been added as a child of another node (use mutation observers instead).
DOMNodeInsertedIntoDocument {{deprecated_inline}} {{domxref("MutationEvent")}} DOM L3 A node has been inserted into the document (use mutation observers instead).
DOMNodeRemoved {{deprecated_inline}} {{domxref("MutationEvent")}} DOM L3 A node has been removed from its parent node (use mutation observers instead).
DOMNodeRemovedFromDocument {{deprecated_inline}} {{domxref("MutationEvent")}} DOM L3 A node has been removed from the document (use mutation observers instead).
DOMSubtreeModified {{deprecated_inline}} {{domxref("MutationEvent")}} DOM L3 A change happened in the document (use mutation observers instead).
{{event("downloading")}} {{domxref("Event")}} Offline The user agent has found an update and is fetching it, or is downloading the resources listed by the cache manifest for the first time.
{{event("drag")}} {{domxref("DragEvent")}} HTML5 An element or text selection is being dragged (every 350ms).
{{event("dragend")}} {{domxref("DragEvent")}} HTML5 A drag operation is being ended (by releasing a mouse button or hitting the escape key).
{{event("dragenter")}} {{domxref("DragEvent")}} HTML5 A dragged element or text selection enters a valid drop target.
{{event("dragleave")}} {{domxref("DragEvent")}} HTML5 A dragged element or text selection leaves a valid drop target.
{{event("dragover")}} {{domxref("DragEvent")}} HTML5 An element or text selection is being dragged over a valid drop target (every 350ms).
{{event("dragstart")}} {{domxref("DragEvent")}} HTML5 The user starts dragging an element or text selection.
{{event("drop")}} {{domxref("DragEvent")}} HTML5 An element is dropped on a valid drop target.
{{event("durationchange")}} {{domxref("Event")}} HTML5 media The duration attribute has been updated.
{{event("emptied")}} {{domxref("Event")}} HTML5 media The media has become empty; for example, this event is sent if the media has already been loaded (or partially loaded), and the load() method is called to reload it.
{{event("end_(SpeechRecognition)","end")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} The speech recognition service has disconnected.
{{event("end_(SpeechSynthesis)","end")}} {{experimental_inline}} {{domxref("SpeechSynthesisEvent")}} {{SpecName("Web Speech API")}} The utterance has finished being spoken.
{{event("ended")}} {{domxref("Event")}} HTML5 media Playback has stopped because the end of the media was reached.
{{event("ended_(Web_Audio)", "ended")}} {{domxref("Event")}} {{SpecName("Web Audio API")}} Playback has stopped because the end of the media was reached.
{{event("endEvent")}} {{domxref("TimeEvent")}} SVG A SMIL animation element ends.
{{event("error")}} {{domxref("UIEvent")}} DOM L3 A resource failed to load.
{{event("error")}} {{domxref("ProgressEvent")}} Progress and XMLHttpRequest Progression has failed.
{{event("error")}} {{domxref("Event")}} Offline An error occurred while downloading the cache manifest or updating the content of the application.
{{event("error")}} {{domxref("Event")}} WebSocket A WebSocket connection has been closed with prejudice (some data couldn't be sent for example).
{{event("error")}} {{domxref("Event")}} Server Sent Events An event source connection has been failed.
{{event("error")}} {{domxref("Event")}} IndexedDB A request caused an error and failed.
{{event("error_(SpeechRecognitionError)","error")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} A speech recognition error occurs.
{{event("error_(SpeechSynthesisError)","error")}} {{domxref("SpeechSynthesisErrorEvent")}} {{SpecName('Web Speech API')}} An error occurs that prevents the utterance from being successfully spoken.
{{event("focus")}} {{domxref("FocusEvent")}} DOM L3 An element has received focus (does not bubble).
{{event("focusin")}}{{notimplemented_inline(687787)}} {{domxref("FocusEvent")}} DOM L3 An element is about to receive focus (bubbles).
{{event("focusout")}}{{notimplemented_inline(687787)}} {{domxref("FocusEvent")}} DOM L3 An element is about to lose focus (bubbles).
{{event("fullscreenchange")}}{{gecko_minversion_inline("9")}} {{domxref("Event")}} Full Screen An element was turned to fullscreen mode or back to normal mode.
{{event("fullscreenerror")}}{{gecko_minversion_inline("9")}} {{domxref("Event")}} Full Screen It was impossible to switch to fullscreen mode for technical reasons or because the permission was denied.
{{event("gamepadconnected")}} {{domxref("GamepadEvent")}} Gamepad A gamepad has been connected.
{{event("gamepaddisconnected")}} {{domxref("GamepadEvent")}} Gamepad A gamepad has been disconnected.
{{event("gotpointercapture")}} {{domxref("PointerEvent")}} Pointer Events Element receives pointer capture.
{{event("hashchange")}} {{domxref("HashChangeEvent")}} HTML5 The fragment identifier of the URL has changed (the part of the URL after the #).
{{event("lostpointercapture")}} {{domxref("PointerEvent")}} Pointer Events Element lost pointer capture.
{{event("input")}} {{domxref("Event")}} HTML5 The value of an element changes or the content of an element with the attribute contenteditable is modified.
{{event("invalid")}} {{domxref("Event")}} HTML5 A submittable element has been checked and doesn't satisfy its constraints.
{{event("keydown")}} {{domxref("KeyboardEvent")}} DOM L3 A key is pressed down.
{{event("keypress")}} {{domxref("KeyboardEvent")}} DOM L3 A key is pressed down and that key normally produces a character value (use input instead).
{{event("keyup")}} {{domxref("KeyboardEvent")}} DOM L3 A key is released.
{{event("languagechange")}} {{experimental_inline}} {{domxref("Event")}} {{ SpecName('HTML5.1', '#dom-navigator-languages', 'NavigatorLanguage.languages') }} The user's preferred languages have changed.
{{event("levelchange")}} {{domxref("Event")}} Battery status The level attribute has been updated.
{{event("load")}} {{domxref("UIEvent")}} DOM L3 A resource and its dependent resources have finished loading.
load {{domxref("ProgressEvent")}} Progress and XMLHttpRequest Progression has been successful.
{{event("loadeddata")}} {{domxref("Event")}} HTML5 media The first frame of the media has finished loading.
{{event("loadedmetadata")}} {{domxref("Event")}} HTML5 media The metadata has been loaded.
{{event("loadend")}} {{domxref("ProgressEvent")}} Progress and XMLHttpRequest Progress has stopped (after "error", "abort" or "load" have been dispatched).
{{event("loadstart")}} {{domxref("ProgressEvent")}} Progress and XMLHttpRequest Progress has begun.
{{event("mark")}} {{experimental_inline}} {{domxref("SpeechSynthesisEvent")}} {{SpecName('Web Speech API')}} The spoken utterance reaches a named SSML "mark" tag.
message {{domxref("MessageEvent")}} WebSocket A message is received through a WebSocket.
message {{domxref("MessageEvent")}} Web Workers A message is received from a Web Worker.
message {{domxref("MessageEvent")}} Web Messaging A message is received from a child (i)frame or a parent window.
message {{domxref("MessageEvent")}} Server Sent Events A message is received through an event source.
{{event("message_(ServiceWorker)","message")}} {{experimental_inline}} {{domxref("ServiceWorkerMessageEvent")}} or {{domxref("ExtendableMessageEvent")}}, depending on context. Service Workers A message is received from a service worker, or a message is received in a service worker from another context.
{{event("mousedown")}} {{domxref("MouseEvent")}} DOM L3 A pointing device button (usually a mouse) is pressed on an element.
{{event("mouseenter")}} {{domxref("MouseEvent")}} DOM L3 A pointing device is moved onto the element that has the listener attached.
{{event("mouseleave")}} {{domxref("MouseEvent")}} DOM L3 A pointing device is moved off the element that has the listener attached.
{{event("mousemove")}} {{domxref("MouseEvent")}} DOM L3 A pointing device is moved over an element.
{{event("mouseout")}} {{domxref("MouseEvent")}} DOM L3 A pointing device is moved off the element that has the listener attached or off one of its children.
{{event("mouseover")}} {{domxref("MouseEvent")}} DOM L3 A pointing device is moved onto the element that has the listener attached or onto one of its children.
{{event("mouseup")}} {{domxref("MouseEvent")}} DOM L3 A pointing device button is released over an element.
{{event("nomatch")}} {{experimental_inline}} {{domxref("SpeechRecognitionEvent")}} {{SpecName('Web Speech API')}} The speech recognition service returns a final result with no significant recognition.
{{event("notificationclick")}} {{domxref("NotificationEvent")}} {{SpecName('Web Notifications','#dom-serviceworkerglobalscope-onnotificationclick','onnotificationclick')}} A system notification spawned by {{domxref("ServiceWorkerRegistration.showNotification()")}} has been clicked.
{{event("noupdate")}} {{domxref("Event")}} Offline The manifest hadn't changed.
{{event("obsolete")}} {{domxref("Event")}} Offline The manifest was found to have become a 404 or 410 page, so the application cache is being deleted.
{{event("offline")}} {{domxref("Event")}} HTML5 offline The browser has lost access to the network.
{{event("online")}} {{domxref("Event")}} HTML5 offline The browser has gained access to the network (but particular websites might be unreachable).
open {{domxref("Event")}} WebSocket A WebSocket connection has been established.
open {{domxref("Event")}} Server Sent Events An event source connection has been established.
{{event("orientationchange")}} {{domxref("Event")}} Screen Orientation The orientation of the device (portrait/landscape) has changed
{{event("pagehide")}} {{domxref("PageTransitionEvent")}} HTML5 A session history entry is being traversed from.
{{event("pageshow")}} {{domxref("PageTransitionEvent")}} HTML5 A session history entry is being traversed to.
{{event("paste")}} {{domxref("ClipboardEvent")}} Clipboard Data has been transferred from the system clipboard to the document.
{{event("pause")}} {{domxref("Event")}} HTML5 media Playback has been paused.
{{event("pause_(SpeechSynthesis)", "pause")}} {{experimental_inline}} {{domxref("SpeechSynthesisEvent")}} {{SpecName('Web Speech API')}} The utterance is paused part way through.
{{event("pointercancel")}} {{domxref("PointerEvent")}} Pointer Events The pointer is unlikely to produce any more events.
{{event("pointerdown")}} {{domxref("PointerEvent")}} Pointer Events The pointer enters the active buttons state.
{{event("pointerenter")}} {{domxref("PointerEvent")}} Pointer Events Pointing device is moved inside the hit-testing boundary.
{{event("pointerleave")}} {{domxref("PointerEvent")}} Pointer Events Pointing device is moved out of the hit-testing boundary.
{{event("pointerlockchange")}} {{domxref("Event")}} Pointer Lock The pointer was locked or released.
{{event("pointerlockerror")}} {{domxref("Event")}} Pointer Lock It was impossible to lock the pointer for technical reasons or because the permission was denied.
{{event("pointermove")}} {{domxref("PointerEvent")}} Pointer Events The pointer changed coordinates.
{{event("pointerout")}} {{domxref("PointerEvent")}} Pointer Events The pointing device moved out of hit-testing boundary or leaves detectable hover range.
{{event("pointerover")}} {{domxref("PointerEvent")}} Pointer Events The pointing device is moved into the hit-testing boundary.
{{event("pointerup")}} {{domxref("PointerEvent")}} Pointer Events The pointer leaves the active buttons state.
{{event("play")}} {{domxref("Event")}} HTML5 media Playback has begun.
{{event("playing")}} {{domxref("Event")}} HTML5 media Playback is ready to start after having been paused or delayed due to lack of data.
{{event("popstate")}} {{domxref("PopStateEvent")}} HTML5 A session history entry is being navigated to (in certain cases).
{{event("progress")}} {{domxref("ProgressEvent")}} Progress and XMLHttpRequest In progress.
progress {{domxref("ProgressEvent")}} Offline The user agent is downloading resources listed by the manifest.
{{event("push")}} {{domxref("PushEvent")}} {{SpecName("Push API")}} A Service Worker has received a push message.
{{event("pushsubscriptionchange")}} {{domxref("PushEvent")}} {{SpecName("Push API")}} A PushSubscription has expired.
{{event("ratechange")}} {{domxref("Event")}} HTML5 media The playback rate has changed.
{{event("readystatechange")}} {{domxref("Event")}} HTML5 and XMLHttpRequest The readyState attribute of a document has changed.
{{event("repeatEvent")}} {{domxref("TimeEvent")}} SVG A SMIL animation element is repeated.
{{event("reset")}} {{domxref("Event")}} DOM L2, HTML5 A form is reset.
{{event("resize")}} {{domxref("UIEvent")}} DOM L3 The document view has been resized.
{{event("resourcetimingbufferfull")}} {{domxref("Performance")}} Resource Timing The browser's resource timing buffer is full.
{{event("result")}} {{experimental_inline}} {{domxref("SpeechRecognitionEvent")}} {{SpecName('Web Speech API')}} The speech recognition service returns a result — a word or phrase has been positively recognized and this has been communicated back to the app.
{{event("resume")}} {{experimental_inline}} {{domxref("SpeechSynthesisEvent")}} {{SpecName('Web Speech API')}} A paused utterance is resumed.
{{event("scroll")}} {{domxref("UIEvent")}} DOM L3 The document view or an element has been scrolled.
{{event("seeked")}} {{domxref("Event")}} HTML5 media A seek operation completed.
{{event("seeking")}} {{domxref("Event")}} HTML5 media A seek operation began.
{{event("select")}} {{domxref("UIEvent")}} DOM L3 Some text is being selected.
{{event("selectstart")}} {{experimental_inline}} {{domxref("Event")}} {{ SpecName('Selection API')}} A selection just started.
{{event("selectionchange")}} {{experimental_inline}} {{domxref("Event")}} {{ SpecName('Selection API')}} The selection in the document has been changed.
{{event("show")}} {{domxref("MouseEvent")}} HTML5 A contextmenu event was fired on/bubbled to an element that has a contextmenu attribute
{{event("soundend")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} Any sound — recognisable speech or not — has stopped being detected.
{{event("soundstart")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} Any sound — recognisable speech or not — has been detected.
{{event("speechend")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} Speech recognised by the speech recognition service has stopped being detected.
{{event("speechstart")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} Sound that is recognised by the speech recognition service as speech has been detected.
{{event("stalled")}} {{domxref("Event")}} HTML5 media The user agent is trying to fetch media data, but data is unexpectedly not forthcoming.
{{event("start_(SpeechRecognition)","start")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} The speech recognition service has begun listening to incoming audio with intent to recognize grammars associated with the current SpeechRecognition.
{{event("start_(SpeechSynthesis)","start")}} {{domxref("SpeechSynthesisEvent")}} {{SpecName('Web Speech API')}} The utterance has begun to be spoken.
{{event("storage")}} {{domxref("StorageEvent")}} Web Storage A storage area (localStorage or sessionStorage) has changed.
{{event("submit")}} {{domxref("Event")}} DOM L2, HTML5 A form is submitted.
success {{domxref("Event")}} IndexedDB A request successfully completed.
{{event("suspend")}} {{domxref("Event")}} HTML5 media Media data loading has been suspended.
{{event("SVGAbort")}} {{domxref("SVGEvent")}} SVG Page loading has been stopped before the SVG was loaded.
{{event("SVGError")}} {{domxref("SVGEvent")}} SVG An error has occurred before the SVG was loaded.
{{event("SVGLoad")}} {{domxref("SVGEvent")}} SVG An SVG document has been loaded and parsed.
{{event("SVGResize")}} {{domxref("SVGEvent")}} SVG An SVG document is being resized.
{{event("SVGScroll")}} {{domxref("SVGEvent")}} SVG An SVG document is being scrolled.
{{event("SVGUnload")}} {{domxref("SVGEvent")}} SVG An SVG document has been removed from a window or frame.
{{event("SVGZoom")}} {{domxref("SVGZoomEvent")}} SVG An SVG document is being zoomed.
{{event("timeout")}} {{domxref("ProgressEvent")}} XMLHttpRequest  
{{event("timeupdate")}} {{domxref("Event")}} HTML5 media The time indicated by the currentTime attribute has been updated.
{{event("touchcancel")}} {{domxref("TouchEvent")}} Touch Events A touch point has been disrupted in an implementation-specific manners (too many touch points for example).
{{event("touchend")}} {{domxref("TouchEvent")}} Touch Events A touch point is removed from the touch surface.
{{event("touchmove")}} {{domxref("TouchEvent")}} Touch Events A touch point is moved along the touch surface.
{{event("touchstart")}} {{domxref("TouchEvent")}} Touch Events A touch point is placed on the touch surface.
{{event("transitionend")}} {{domxref("TransitionEvent")}} CSS Transitions A CSS transition has completed.
{{event("unload")}} {{domxref("UIEvent")}} DOM L3 The document or a dependent resource is being unloaded.
{{event("updateready")}} {{domxref("Event")}} Offline The resources listed in the manifest have been newly redownloaded, and the script can use swapCache() to switch to the new cache.
upgradeneeded   IndexedDB An attempt was made to open a database with a version number higher than its current version. A versionchange transaction has been created.
{{event("userproximity")}} {{domxref("UserProximityEvent")}} {{SpecName("Proximity Events")}} Fresh data is available from a proximity sensor (indicates whether the nearby object is near the device or not).
{{event("voiceschanged")}} {{experimental_inline}} {{domxref("Event")}} {{SpecName('Web Speech API')}} The list of {{domxref("SpeechSynthesisVoice")}} objects that would be returned by the {{domxref("SpeechSynthesis.getVoices()")}} method has changed (when the {{event("voiceschanged")}} event fires.)
versionchange   IndexedDB A versionchange transaction completed.
{{event("visibilitychange")}} {{domxref("Event")}} Page visibility The content of a tab has become visible or has been hidden.
{{event("volumechange")}} {{domxref("Event")}} HTML5 media The volume has changed.
{{event("vrdisplayconnected")}} {{experimental_inline}} {{domxref("Event")}} WebVR API A compatible VR device has been connected to the computer.
{{event("vrdisplaydisconnected")}} {{experimental_inline}} {{domxref("Event")}} WebVR API A compatible VR device has been disconnected from the computer.
{{event("vrdisplaypresentchange")}} {{experimental_inline}} {{domxref("Event")}} WebVR API The presenting state of a VR device has changed — i.e. from presenting to not presenting, or vice versa.
{{event("waiting")}} {{domxref("Event")}} HTML5 media Playback has stopped because of a temporary lack of data.
{{event("wheel")}}{{gecko_minversion_inline("17")}} {{domxref("WheelEvent")}} DOM L3 A wheel button of a pointing device is rotated in any direction.

Non-standard events

Event Name Event Type Specification Fired when...
{{event("afterscriptexecute")}} {{domxref("Event")}} Mozilla Specific A script has been executed.
{{event("beforescriptexecute")}} {{domxref("Event")}} Mozilla Specific A script is about to be executed.
{{event("beforeinstallprompt")}} {{domxref("Event")}} Chrome specific A user is prompted to save a web site to a home screen on mobile.
{{event("cardstatechange")}}   Firefox OS specific The {{domxref("MozMobileConnection.cardState")}} property changes value.
{{event("change")}} {{domxref("DeviceStorageChangeEvent")}} Firefox OS specific This event is triggered each time a file is created, modified or deleted on a given storage area.
{{event("connectionInfoUpdate")}}   Firefox OS specific The informations about the signal strength and the link speed have been updated.
{{event("cfstatechange")}}   Firefox OS specific The call forwarding state changes.
{{event("datachange")}}   Firefox OS specific The {{domxref("MozMobileConnection.data")}} object changes values.
{{event("dataerror")}}   Firefox OS specific The {{domxref("MozMobileConnection.data")}} object receive an error from the RIL.
{{event("DOMMouseScroll")}}{{deprecated_inline}}   Mozilla specific The wheel button of a pointing device is rotated (detail attribute is a number of lines). (use {{event("wheel")}} instead)
dragdrop {{deprecated_inline}} DragEvent Mozilla specific An element is dropped (use {{event("drop")}} instead).
dragexit {{deprecated_inline}} DragEvent Mozilla specific A drag operation is being ended(use {{event("dragend")}} instead).
draggesture {{deprecated_inline}} DragEvent Mozilla specific The user starts dragging an element or text selection (use {{event("dragstart")}} instead).
{{event("icccardlockerror")}}   Firefox OS specific the {{domxref("MozMobileConnection.unlockCardLock()")}} or {{domxref("MozMobileConnection.setCardLock()")}} methods fails.
{{event("iccinfochange")}}   Firefox OS specific The {{domxref("MozMobileConnection.iccInfo")}} object changes.
{{event("localized")}}   Mozilla Specific The page has been localized using data-l10n-* attributes.
{{event("mousewheel")}}{{deprecated_inline}} {{notimplemented_inline}}   IE invented The wheel button of a pointing device is rotated.
{{event("MozAudioAvailable")}} {{domxref("Event")}} Mozilla specific The audio buffer is full and the corresponding raw samples are available.
MozBeforeResize {{obsolete_inline}}   Mozilla specific A window is about to be resized.
{{event("mozbrowseractivitydone")}}   Firefox OS Browser API-specific Sent when some activity has been completed (complete description TBD.)
{{event("mozbrowserasyncscroll")}}   Firefox OS Browser API-specific Sent when the scroll position within a browser {{HTMLElement("iframe")}} changes.
{{event("mozbrowseraudioplaybackchange")}}   Firefox OS Browser API-specific Sent when audio starts or stops playing within the browser {{HTMLElement("iframe")}} content.
{{event("mozbrowsercaretstatechanged")}}   Firefox OS Browser API-specific Sent when the text selected inside the browser {{HTMLElement("iframe")}} content changes.
{{event("mozbrowserclose")}}   Firefox OS Browser API-specific Sent when window.close() is called within a browser {{HTMLElement("iframe")}}.
{{event("mozbrowsercontextmenu")}}   Firefox OS Browser API-specific Sent when a browser {{HTMLElement("iframe")}} try to open a context menu.
{{event("mozbrowserdocumentfirstpaint")}}   Firefox OS Browser API-specific Sent when a new paint occurs on any document in the browser {{HTMLElement("iframe")}}.
{{event("mozbrowsererror")}}   Firefox OS Browser API-specific Sent when an error occured while trying to load a content within a browser iframe
{{event("mozbrowserfindchange")}}   Firefox OS Browser API-specific Sent when a search operation is performed on the browser {{HTMLElement("iframe")}} content (see HTMLIFrameElement search methods.)
{{event("mozbrowserfirstpaint")}}   Firefox OS Browser API-specific Sent when the {{HTMLElement("iframe")}} paints content for the first time (this doesn't include the initial paint from about:blank.)
{{event("mozbrowsericonchange")}}   Firefox OS Browser API-specific Sent when the favicon of a browser iframe changes.
{{event("mozbrowserlocationchange")}}   Firefox OS Browser API-specific Sent when an browser iframe's location changes.
{{event("mozbrowserloadend")}}   Firefox OS Browser API-specific Sent when the browser iframe has finished loading all its assets.
{{event("mozbrowserloadstart")}}   Firefox OS Browser API-specific Sent when the browser iframe starts to load a new page.
{{event("mozbrowsermanifestchange")}}   Firefox OS Browser API-specific Sent when a the path to the app manifest changes, in the case of a browser {{HTMLElement("iframe")}} with an open web app embedded in it.
{{event("mozbrowsermetachange")}}   Firefox OS Browser API-specific Sent when a {{htmlelement("meta")}} elelment is added to, removed from or changed in the browser {{HTMLElement("iframe")}}'s content.
{{event("mozbrowseropensearch")}}   Firefox OS Browser API-specific Sent when a link to a search engine is found.
{{event("mozbrowseropentab")}}   Firefox OS Browser API-specific Sent when a new tab is opened within a browser {{HTMLElement("iframe")}} as a result of the user issuing a command to open a link target in a new tab (for example ctrl/cmd + click.)
{{event("mozbrowseropenwindow")}}   Firefox OS Browser API-specific Sent when {{domxref("window.open()")}} is called within a browser iframe.
{{event("mozbrowserresize")}}   Firefox OS Browser API-specific Sent when the browser {{HTMLElement("iframe")}}'s window size has changed.
{{event("mozbrowserscroll")}}   Firefox OS Browser API-specific Sent when the browser {{HTMLElement("iframe")}} content scrolls.
{{event("mozbrowserscrollareachanged")}}   Firefox OS Browser API-specific Sent when the available scrolling area  in the browser {{HTMLElement("iframe")}} changes. This can occur on resize and when the page size changes (while loading for example.)
{{event("mozbrowserscrollviewchange")}}   Firefox OS Browser API-specific Sent when asynchronous scrolling (i.e. APCZ) starts or stops.
{{event("mozbrowsersecuritychange")}}   Firefox OS Browser API-specific Sent when the SSL state changes within a browser iframe.
{{event("mozbrowserselectionstatechanged")}}   Firefox OS Browser API-specific Sent when the text selected inside the browser {{HTMLElement("iframe")}} content changes. Note that this is deprecated, and newer implementations use {{event("mozbrowsercaretstatechanged")}} instead.
{{event("mozbrowsershowmodalprompt")}}   Firefox OS Browser API-specific Sent when {{domxref("window.alert","alert()")}}, {{domxref("window.confirm","confirm()")}} or {{domxref("window.prompt","prompt()")}} are called within a browser iframe
{{event("mozbrowsertitlechange")}}   Firefox OS Browser API-specific Sent when the document.title changes within a browser iframe.
{{event("mozbrowserusernameandpasswordrequired")}}   Firefox OS Browser API-specific Sent when an HTTP authentification is requested.
{{event("mozbrowservisibilitychange")}}   Firefox OS Browser API-specific Sent when the visibility state of the current browser iframe {{HTMLElement("iframe")}} changes, for example due to a call to {{domxref("HTMLIFrameElement.setVisible","setVisible()")}}.
{{event("MozGamepadButtonDown")}}   To be specified A gamepad button is pressed down.
{{event("MozGamepadButtonUp")}}   To be specified A gamepad button is released.
{{event("MozMousePixelScroll")}} {{deprecated_inline}}   Mozilla specific The wheel button of a pointing device is rotated (detail attribute is a number of pixels). (use wheel instead)
{{event("MozOrientation")}} {{deprecated_inline}}   Mozilla specific Fresh data is available from an orientation sensor (see deviceorientation).
{{event("MozScrolledAreaChanged")}} {{domxref("UIEvent")}} Mozilla specific The document view has been scrolled or resized.
{{event("moztimechange")}}   Mozilla specific The time of the device has been changed.
MozTouchDown {{deprecated_inline}}   Mozilla specific A touch point is placed on the touch surface (use touchstart instead).
MozTouchMove {{deprecated_inline}}   Mozilla specific A touch point is moved along the touch surface (use touchmove instead).
MozTouchUp {{deprecated_inline}}   Mozilla specific A touch point is removed from the touch surface (use touchend instead).
{{event("alerting")}} {{domxref("CallEvent")}} To be specified The correspondent is being alerted (his/her phone is ringing).
{{event("busy")}} {{domxref("CallEvent")}} To be specified The line of the correspondent is busy.
{{event("callschanged")}} {{domxref("CallEvent")}} To be specified A call has been added or removed from the list of current calls.
onconnected {{event("connected")}} {{domxref("CallEvent")}} To be specified A call has been connected.
{{event("connecting")}} {{domxref("CallEvent")}} To be specified A call is about to connect.
{{event("delivered")}} {{domxref("SMSEvent")}} To be specified An SMS has been successfully delivered.
{{event("dialing")}} {{domxref("CallEvent")}} To be specified The number of a correspondent has been dialed.
{{event("disabled")}}   Firefox OS specific Wifi has been disabled on the device.
{{event("disconnected")}} {{domxref("CallEvent")}} To be specified A call has been disconnected.
{{event("disconnecting")}} {{domxref("CallEvent")}} To be specified A call is about to disconnect.
{{event("enabled")}}   Firefox OS specific Wifi has been enabled on the device.
{{event("error_(Telephony)","error")}} {{domxref("CallEvent")}} To be specified An error occurred.
{{event("held")}} {{domxref("CallEvent")}} To be specified A call has been held.
{{event("holding")}} {{domxref("CallEvent")}} To be specified A call is about to be held.
{{event("incoming")}} {{domxref("CallEvent")}} To be specified A call is being received.
{{event("received")}} {{domxref("SMSEvent")}} To be specified An SMS has been received.
{{event("resuming")}} {{domxref("CallEvent")}} To be specified A call is about to resume.
{{event("sent")}} {{domxref("SMSEvent")}} To be specified An SMS has been sent.
{{event("statechange")}} {{domxref("CallEvent")}} To be specified The state of a call has changed.
{{event("statuschange")}}   Firefox OS specific The status of the Wifi connection changed.
{{event("overflow")}} {{domxref("UIEvent")}} Mozilla specific An element has been overflowed by its content or has been rendered for the first time in this state (only works for elements styled with overflow != visible).
{{event("smartcard-insert")}}   Mozilla specific A smartcard has been inserted.
{{event("smartcard-remove")}}   Mozilla specific A smartcard has been removed.
{{event("stkcommand")}}   Firefox OS specific The STK Proactive Command is issued from ICC.
{{event("stksessionend")}}   Firefox OS specific The STK Session is terminated by ICC.
text   Mozilla Specific A generic composition event occurred.
{{event("touchenter")}} {{domxref("TouchEvent")}} Touch Events {{removed_inline}}  
{{event("touchleave")}} {{domxref("TouchEvent")}} Touch Events {{removed_inline}}  
{{event("underflow")}} {{domxref("UIEvent")}} Mozilla specific An element is no longer overflowed by its content (only works for elements styled with overflow != visible).
uploadprogress {{deprecated_inline}} {{domxref("ProgressEvent")}} Mozilla Specific Upload is in progress (see {{event("progress")}}).

{{event("ussdreceived")}}

  Firefox OS specific A new USSD message is received
{{event("voicechange")}}   Firefox OS specific The {{domxref("MozMobileConnection.voice")}} object changes values.

Mozilla-specific events

Note: those events are never exposed to web content and can only be used in chrome content context.

XUL events

Event Name Event Type Specification Fired when...
{{event("broadcast")}}   XUL An observer noticed a change to the attributes of a watched broadcaster.
{{event("CheckboxStateChange")}}   XUL The state of a checkbox has been changed either by a user action or by a script (useful for accessibility).
close   XUL The close button of the window has been clicked.
{{event("command")}}   XUL An element has been activated.
{{event("commandupdate")}}   XUL A command update occurred on a commandset element.
{{event("DOMMenuItemActive")}}   XUL A menu or menuitem has been hovered or highlighted.
{{event("DOMMenuItemInactive")}}   XUL A menu or menuitem is no longer hovered or highlighted.
{{event("popuphidden")}} PopupEvent XUL A menupopup, panel or tooltip has been hidden.
{{event("popuphiding")}} PopupEvent XUL A menupopup, panel or tooltip is about to be hidden.
{{event("popupshowing")}} PopupEvent XUL A menupopup, panel or tooltip is about to become visible.
{{event("popupshown")}} PopupEvent XUL A menupopup, panel or tooltip has become visible.
{{event("RadioStateChange")}}   XUL The state of a radio has been changed either by a user action or by a script (useful for accessibility).
{{event("ValueChange")}}   XUL The value of an element has changed (a progress bar for example, useful for accessibility).

Add-on-specific events

Event Name Event Type Specification Fired when...
MozSwipeGesture   Addons specific A touch point is swiped across the touch surface
MozMagnifyGestureStart   Addons specific Two touch points start to move away from each other.
MozMagnifyGestureUpdate   Addons specific Two touch points move away from each other (after a MozMagnifyGestureStart).
MozMagnifyGesture   Addons specific Two touch points moved away from each other (after a sequence of MozMagnifyGestureUpdate).
MozRotateGestureStart   Addons specific Two touch points start to rotate around a point.
MozRotateGestureUpdate   Addons specific Two touch points rotate around a point (after a MozRotateGestureStart).
MozRotateGesture   Addons specific Two touch points rotate around a point (after a sequence of MozRotateGestureUpdate).
MozTapGesture   Addons specific Two touch points are tapped on the touch surface.
MozPressTapGesture   Addons specific A "press-tap" gesture happened on the touch surface (first finger down, second finger down, second finger up, first finger up).
MozEdgeUIGesture   Addons specific A touch point is swiped across the touch surface to invoke the edge UI (Win8 only).
MozAfterPaint   Addons specific Content has been repainted.
DOMPopupBlocked   Addons specific A popup has been blocked
DOMWindowCreated   Addons specific A window has been created.
DOMWindowClose   Addons specific A window is about to be closed.
DOMTitleChanged   Addons specifc The title of a window has changed.
DOMLinkAdded   Addons specifc A link has been added a document.
DOMLinkRemoved   Addons specifc A link has been removed inside from a document.
DOMMetaAdded   Addons specific A meta element has been added to a document.
DOMMetaRemoved   Addons specific A meta element has been removed from a document.
DOMWillOpenModalDialog   Addons specific A modal dialog is about to open.
DOMModalDialogClosed   Addons specific A modal dialog has been closed.
DOMAutoComplete   Addons specific The content of an element has been auto-completed.
DOMFrameContentLoaded   Addons specific The frame has finished loading (but not its dependent resources).
AlertActive   Addons specific A notification element is shown.
AlertClose   Addons specific A notification element is closed.
fullscreen   Addons specific Browser fullscreen mode has been entered or left.
sizemodechange   Addons specific Window has entered/left fullscreen mode, or has been minimized/unminimized.
MozEnteredDomFullscreen   Addons specific DOM fullscreen mode has been entered.
SSWindowClosing   Addons specific The session store will stop tracking this window.
SSTabClosing   Addons specific The session store will stop tracking this tab.
SSTabRestoring   Addons specific A tab is about to be restored.
SSTabRestored   Addons specific A tab has been restored.
SSWindowStateReady   Addons specific A window state has switched to "ready".
SSWindowStateBusy   Addons specific A window state has switched to "busy".
TabOpen   Addons specific A tab has been opened.
TabClose   Addons specific A tab has been closed.
TabSelect   Addons specific A tab has been selected.
TabShow   Addons specific A tab has been shown.
TabHide   Addons specific A tab has been hidden.
TabPinned   Addons specific A tab has been pinned.
TabUnpinned   Addons specific A tab has been unpinned.

Developer tool-specific events

Event Name Event Type Specification Fired when...
CssRuleViewRefreshed   devtools specific The "Rules" view of the style inspector has been updated.
CssRuleViewChanged   devtools specific The "Rules" view of the style inspector has been changed.
CssRuleViewCSSLinkClicked   devtools specific A link to a CSS file has been clicked in the "Rules" view of the style inspector.

See also

Revision Source

<div>{{EventRef}}</div>

<p>DOM Events are sent to notify code of interesting things that have taken place. Each event is represented by an object which is based on the {{domxref("Event")}} interface, and may have additional custom fields and/or functions used to get additional information about what happened. Events can represent everything from basic user interactions to automated notifications of things happening in the rendering model.</p>

<p>This article offers a list of events that can be sent; some are standard events defined in official specifications, while others are events used internally by specific browsers; for example, Mozilla-specific events are listed so that <a href="/en-US/docs/Mozilla/Add-ons">add-ons</a> can use them to interact with the browser.</p>

<h2 id="Most_Common_Categories">Most Common Categories</h2>

<table class="standard-table">
 <caption>Resource Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("cached")}}</td>
   <td>The resources listed in the manifest have been downloaded, and the application is now cached.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>A resource failed to load.</td>
  </tr>
  <tr>
   <td>{{event("abort")}}</td>
   <td>The loading of a resource has been aborted.</td>
  </tr>
  <tr>
   <td>{{event("load")}}</td>
   <td>A resource and its dependent resources have finished loading.</td>
  </tr>
  <tr>
   <td>{{event("beforeunload")}}</td>
   <td>The window, the document and its resources are about to be unloaded.</td>
  </tr>
  <tr>
   <td>{{event("unload")}}</td>
   <td>The document or a dependent resource is being unloaded.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Network Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("online")}}</td>
   <td>The browser has gained access to the network.</td>
  </tr>
  <tr>
   <td>{{event("offline")}}</td>
   <td>The browser has lost access to the network.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Focus Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("focus")}}</td>
   <td>An element has received focus (does not bubble).</td>
  </tr>
  <tr>
   <td>{{event("blur")}}</td>
   <td>An element has lost focus (does not bubble).</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Websocket Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/open_websocket">open</a></code></td>
   <td>A WebSocket connection has been established.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/message_websocket">message</a></code></td>
   <td>A message is received through a WebSocket.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>A WebSocket connection has been closed with prejudice (some data couldn't be sent for example).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/close_websocket">close</a></code></td>
   <td>A WebSocket connection has been closed.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Form Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("reset")}}</td>
   <td>The reset button is pressed</td>
  </tr>
  <tr>
   <td>{{event("submit")}}</td>
   <td>The submit button is pressed</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Printing Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("beforeprint")}}</td>
   <td>The print dialog is opened</td>
  </tr>
  <tr>
   <td>{{event("afterprint")}}</td>
   <td>The print dialog is closed</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Text Composition Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("compositionstart")}}</td>
   <td>The composition of a passage of text is prepared (similar to keydown for a keyboard input, but works with other inputs such as speech recognition).</td>
  </tr>
  <tr>
   <td>{{event("compositionupdate")}}</td>
   <td>A character is added to a passage of text being composed.</td>
  </tr>
  <tr>
   <td>{{event("compositionend")}}</td>
   <td>The composition of a passage of text has been completed or canceled.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>View Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("fullscreenchange")}}</td>
   <td>An element was turned to fullscreen mode or back to normal mode.</td>
  </tr>
  <tr>
   <td>{{event("fullscreenerror")}}</td>
   <td>It was impossible to switch to fullscreen mode for technical reasons or because the permission was denied.</td>
  </tr>
  <tr>
   <td>{{event("resize")}}</td>
   <td>The document view has been resized.</td>
  </tr>
  <tr>
   <td>{{event("scroll")}}</td>
   <td>The document view or an element has been scrolled.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Clipboard Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("cut")}}</td>
   <td>The selection has been cut and copied to the clipboard</td>
  </tr>
  <tr>
   <td>{{event("copy")}}</td>
   <td>The selection has been copied to the clipboard</td>
  </tr>
  <tr>
   <td>{{event("paste")}}</td>
   <td>The item from the clipboard has been pasted</td>
  </tr>
 </tbody>
</table>

<table class="standard-table" style="page-break-before:always">
 <caption>Keyboard Events</caption>
 <tbody>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
  <tr>
   <td>{{event("keydown")}}</td>
   <td>ANY key is pressed</td>
  </tr>
  <tr>
   <td>{{event("keypress")}}</td>
   <td>ANY key except Shift, Fn, CapsLock is in pressed position. (Fired continously.)</td>
  </tr>
  <tr>
   <td>{{event("keyup")}}</td>
   <td>ANY key is released</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Mouse Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("mouseenter")}}</td>
   <td>A pointing device is moved onto the element that has the listener attached.</td>
  </tr>
  <tr>
   <td>{{event("mouseover")}}</td>
   <td>A pointing device is moved onto the element that has the listener attached or onto one of its children.</td>
  </tr>
  <tr>
   <td>{{event("mousemove")}}</td>
   <td>A pointing device is moved over an element. (Fired continously as the mouse moves.)</td>
  </tr>
  <tr>
   <td>{{event("mousedown")}}</td>
   <td>A pointing device button (ANY button) is pressed on an element.</td>
  </tr>
  <tr>
   <td>{{event("mouseup")}}</td>
   <td>A pointing device button (ANY button) is released over an element.</td>
  </tr>
  <tr>
   <td>{{event("click")}}</td>
   <td>A pointing device button (ANY button) has been pressed and released on an element.</td>
  </tr>
  <tr>
   <td>{{event("dblclick")}}</td>
   <td>A pointing device button is clicked twice on an element.</td>
  </tr>
  <tr>
   <td>{{event("contextmenu")}}</td>
   <td>The right button of the mouse is clicked (before the context menu is displayed).</td>
  </tr>
  <tr>
   <td>{{event("wheel")}}</td>
   <td>A wheel button of a pointing device is rotated in any direction.</td>
  </tr>
  <tr>
   <td>{{event("mouseleave")}}</td>
   <td>A pointing device is moved off the element that has the listener attached.</td>
  </tr>
  <tr>
   <td>{{event("mouseout")}}</td>
   <td>A pointing device is moved off the element that has the listener attached or off one of its children.</td>
  </tr>
  <tr>
   <td>{{event("select")}}</td>
   <td>Some text is being selected.</td>
  </tr>
  <tr>
   <td>{{event("pointerlockchange")}}</td>
   <td>The pointer was locked or released.</td>
  </tr>
  <tr>
   <td>{{event("pointerlockerror")}}</td>
   <td>It was impossible to lock the pointer for technical reasons or because the permission was denied.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table" style="height:276px; width:856px">
 <caption>Drag &amp; Drop Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("dragstart")}}</td>
   <td>The user starts dragging an element or text selection.</td>
  </tr>
  <tr>
   <td>{{event("drag")}}</td>
   <td>An element or text selection is being dragged (Fired continuously every 350ms).</td>
  </tr>
  <tr>
   <td>{{event("dragend")}}</td>
   <td>A drag operation is being ended (by releasing a mouse button or hitting the escape key).</td>
  </tr>
  <tr>
   <td>{{event("dragenter")}}</td>
   <td>A dragged element or text selection enters a valid drop target.</td>
  </tr>
  <tr>
   <td>{{event("dragover")}}</td>
   <td>An element or text selection is being dragged over a valid drop target. (Fired continuously every 350ms.)</td>
  </tr>
  <tr>
   <td>{{event("dragleave")}}</td>
   <td>A dragged element or text selection leaves a valid drop target.</td>
  </tr>
  <tr>
   <td>{{event("drop")}}</td>
   <td>An element is dropped on a valid drop target.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table" style="page-break-before:always">
 <caption>Media Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("durationchange")}}</td>
   <td>The <code>duration</code> attribute has been updated.</td>
  </tr>
  <tr>
   <td>{{event("loadedmetadata")}}</td>
   <td>The metadata has been loaded.</td>
  </tr>
  <tr>
   <td>{{event("loadeddata")}}</td>
   <td>The first frame of the media has finished loading.</td>
  </tr>
  <tr>
   <td>{{event("canplay")}}</td>
   <td>The user agent can play the media, but estimates that not enough data has been loaded to play the media up to its end without having to stop for further buffering of content.</td>
  </tr>
  <tr>
   <td>{{event("canplaythrough")}}</td>
   <td>The user agent can play the media, and estimates that enough data has been loaded to play the media up to its end without having to stop for further buffering of content.</td>
  </tr>
  <tr>
   <td>{{event("ended")}}</td>
   <td>Playback has stopped because the end of the media was reached.</td>
  </tr>
  <tr>
   <td>{{event("emptied")}}</td>
   <td>The media has become empty; for example, this event is sent if the media has already been loaded (or partially loaded), and the <a href="/en-US/docs/XPCOM_Interface_Reference/NsIDOMHTMLMediaElement" rel="internal"><code>load()</code></a>&nbsp;method is called to reload it.</td>
  </tr>
  <tr>
   <td>{{event("stalled")}}</td>
   <td>The user agent is trying to fetch media data, but data is unexpectedly not forthcoming.</td>
  </tr>
  <tr>
   <td>{{event("suspend")}}</td>
   <td>Media data loading has been suspended.</td>
  </tr>
  <tr>
   <td>{{event("play")}}</td>
   <td>Playback has begun.</td>
  </tr>
  <tr>
   <td>{{event("playing")}}</td>
   <td>Playback is ready to start after having been paused or delayed due to lack of data.</td>
  </tr>
  <tr>
   <td>{{event("pause")}}</td>
   <td>Playback has been paused.</td>
  </tr>
  <tr>
   <td>{{event("waiting")}}</td>
   <td>Playback has stopped because of a temporary lack of data.</td>
  </tr>
  <tr>
   <td>{{event("seeking")}}</td>
   <td>A <em>seek</em> operation began.</td>
  </tr>
  <tr>
   <td>{{event("seeked")}}</td>
   <td>A <em>seek</em> operation completed.</td>
  </tr>
  <tr>
   <td>{{event("ratechange")}}</td>
   <td>The playback rate has changed.</td>
  </tr>
  <tr>
   <td>{{event("timeupdate")}}</td>
   <td>The time indicated by the <code>currentTime</code> attribute has been updated.</td>
  </tr>
  <tr>
   <td>{{event("volumechange")}}</td>
   <td>The volume has changed.</td>
  </tr>
  <tr>
   <td>{{event("complete")}}</td>
   <td>The rendering of an {{domxref("OfflineAudioContext")}} is terminated.</td>
  </tr>
  <tr>
   <td>{{event("ended_(Web_Audio)", "ended")}}</td>
   <td>Playback has stopped because the end of the media was reached.</td>
  </tr>
  <tr>
   <td>{{event("audioprocess")}}</td>
   <td>The input buffer of a {{domxref("ScriptProcessorNode")}} is ready to be processed.</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Progress Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("loadstart")}}</td>
   <td>Progress has begun.</td>
  </tr>
  <tr>
   <td>{{event("progress")}}</td>
   <td>In progress.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>Progression has failed.</td>
  </tr>
  <tr>
   <td>{{event("timeout")}}</td>
   <td>Progression is terminated due to preset time expiring.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/abort_(ProgressEvent)">abort</a></code></td>
   <td>Progression has been terminated (not due to an error).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/load_(ProgressEvent)">load</a></code></td>
   <td>Progression has been successful.</td>
  </tr>
  <tr>
   <td>{{event("loadend")}}</td>
   <td>Progress has stopped (after "error", "abort" or "load" have been dispatched).</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>Session History Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Nam</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("pagehide")}}</td>
   <td>A session history entry is being traversed from.</td>
  </tr>
  <tr>
   <td>{{event("pageshow")}}</td>
   <td>A session history entry is being traversed to.</td>
  </tr>
  <tr>
   <td>{{event("popstate")}}</td>
   <td>A session history entry is being navigated to (in certain cases).</td>
  </tr>
 </tbody>
</table>

<table class="standard-table">
 <caption>CSS Animation Events</caption>
 <thead>
  <tr>
   <th scope="col">Event Name</th>
   <th scope="col">Fired When</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("animationstart")}}</td>
   <td>A <a href="https://developer.mozilla.org/en-US/docs/CSS/CSS_animations">CSS animation</a> has started.</td>
  </tr>
  <tr>
   <td>{{event("animationend")}}</td>
   <td>A <a href="https://developer.mozilla.org/en-US/docs/CSS/CSS_animations">CSS animation</a> has completed.</td>
  </tr>
  <tr>
   <td>{{event("animationiteration")}}</td>
   <td>A <a href="https://developer.mozilla.org/en-US/docs/CSS/CSS_animations">CSS animation</a> is repeated.</td>
  </tr>
 </tbody>
</table>

<h3 id="Storage_events">Storage events</h3>

<p>{{event("change")}} (see {{anch("Non-standard events")}})<br />
 {{event("storage")}}</p>

<h3 id="Update_events">Update events</h3>

<p>{{event("checking")}}<br />
 {{event("downloading")}}<br />
 {{event("error")}}<br />
 {{event("noupdate")}}<br />
 {{event("obsolete")}}<br />
 {{event("updateready")}}</p>

<h3 id="Value_change_events">Value change events</h3>

<p>{{event("broadcast")}}<br />
 {{event("CheckboxStateChange")}}<br />
 {{event("hashchange")}}<br />
 {{event("input")}}<br />
 {{event("RadioStateChange")}}<br />
 {{event("readystatechange")}}<br />
 {{event("ValueChange")}}</p>

<h3 id="Uncategorized_events">Uncategorized events</h3>

<p>{{event("invalid")}}<br />
 {{event("localized")}}<br />
 <code><a href="/en-US/docs/Web/Reference/Events/message_webworker">message</a></code><br />
 <code><a href="/en-US/docs/Web/Reference/Events/message_webmessaging">message</a></code><br />
 <code><a href="/en-US/docs/Web/Reference/Events/message_serversentevents">message</a></code><br />
 <code><a href="/en-US/docs/Web/Reference/Events/open_serversentevents">open</a></code><br />
 {{event("show")}}</p>

<h2 id="Less_Common_and_NonStandard_Categories">Less Common and NonStandard Categories</h2>

<h3 id="SVG_events">SVG events</h3>

<p>{{event("SVGAbort")}}<br />
 {{event("SVGError")}}<br />
 {{event("SVGLoad")}}<br />
 {{event("SVGResize")}}<br />
 {{event("SVGScroll")}}<br />
 {{event("SVGUnload")}}<br />
 {{event("SVGZoom")}}</p>

<h3 id="Database_events">Database events</h3>

<p><code><a href="/en-US/docs/Web/Reference/Events/abort_indexedDB">abort</a></code><br />
 <code><a href="/en-US/docs/Web/Reference/Events/blocked_indexedDB">blocked</a></code><br />
 <code><a href="/en-US/docs/Web/Reference/Events/complete_indexedDB">complete</a></code><br />
 {{event("error")}}&nbsp;(<a href="/en-US/docs/Web/Reference/Events/error">link</a>)<br />
 <code><a href="/en-US/docs/Web/Reference/Events/success_indexedDB">success</a></code><br />
 <code><a href="/en-US/docs/Web/Reference/Events/upgradeneeded_indexedDB">upgradeneeded</a></code><br />
 <code><a href="/en-US/docs/Web/Reference/Events/versionchange_indexedDB">versionchange</a></code></p>

<h3 id="Notification_events">Notification events</h3>

<p><a href="/en-US/docs/Web/Reference/Events/AlertActive">AlertActive</a><br />
 <a href="/en-US/docs/Web/Reference/Events/AlertClose">AlertClose</a></p>

<h3 id="CSS_events">CSS events</h3>

<p><a href="/en-US/docs/Web/Reference/Events/CssRuleViewRefreshed">CssRuleViewRefreshed</a><br />
 <a href="/en-US/docs/Web/Reference/Events/CssRuleViewChanged">CssRuleViewChanged</a><br />
 <a href="/en-US/docs/Web/Reference/Events/CssRuleViewCSSLinkClicked">CssRuleViewCSSLinkClicked</a><br />
 {{event("transitionend")}}</p>

<h3 id="Script_events">Script events</h3>

<p>{{event("afterscriptexecute")}}<br />
 {{event("beforescriptexecute")}}</p>

<h3 id="Menu_events">Menu events</h3>

<p>{{event("DOMMenuItemActive")}}<br />
 {{event("DOMMenuItemInactive")}}</p>

<h3 id="Window_events">Window events</h3>

<p><a href="/en-US/docs/Web/Reference/Events/DOMWindowCreated">DOMWindowCreated</a><br />
 <a href="/en-US/docs/Web/Reference/Events/DOMTitleChanged">DOMTitleChanged</a><br />
 <a href="/en-US/docs/Web/Reference/Events/DOMWindowClose">DOMWindowClose</a><br />
 <a href="/en-US/docs/Web/Reference/Events/SSWindowClosing">SSWindowClosing</a><br />
 <a href="/en-US/docs/Web/Reference/Events/SSWindowStateReady">SSWindowStateReady</a><br />
 <a href="/en-US/docs/Web/Reference/Events/SSWindowStateBusy">SSWindowStateBusy</a><br />
 <a href="/en-US/docs/Web/Reference/Events/close_event">close</a></p>

<h3 id="Document_events">Document events</h3>

<p><a href="/en-US/docs/Web/Reference/Events/DOMLinkAdded">DOMLinkAdded</a><br />
 <a href="/en-US/docs/Web/Reference/Events/DOMLinkRemoved">DOMLinkRemoved</a><br />
 <a href="/en-US/docs/Web/Reference/Events/DOMMetaAdded">DOMMetaAdded</a><br />
 <a href="/en-US/docs/Web/Reference/Events/DOMMetaRemoved">DOMMetaRemoved</a><br />
 <a href="/en-US/docs/Web/Reference/Events/DOMWillOpenModalDialog">DOMWillOpenModalDialog</a><br />
 <a href="/en-US/docs/Web/Reference/Events/DOMModalDialogClosed">OMModalDialogClosed</a></p>

<h3 id="Popup_events">Popup events</h3>

<p>{{event("popuphidden")}}<br />
 {{event("popuphiding")}}<br />
 {{event("popupshowing")}}<br />
 {{event("popupshown")}}<br />
 <a href="/en-US/docs/Web/Reference/Events/DOMPopupBlocked">DOMPopupBlocked</a></p>

<h3 id="Tab_events">Tab events</h3>

<p><a href="/en-US/docs/Web/Reference/Events/TabOpen">TabOpen</a><br />
 <a href="/en-US/docs/Web/Reference/Events/TabClose">TabClose</a><br />
 <a href="/en-US/docs/Web/Reference/Events/TabSelect">TabSelect</a><br />
 <a href="/en-US/docs/Web/Reference/Events/TabShow">TabShow</a><br />
 <a href="/en-US/docs/Web/Reference/Events/TabHide">TabHide</a><br />
 <a href="/en-US/docs/Web/Reference/Events/TabPinned">TabPinned</a><br />
 <a href="/en-US/docs/Web/Reference/Events/TabUnpinned">TabUnpinned</a><br />
 <a href="/en-US/docs/Web/Reference/Events/SSTabClosing">SSTabClosing</a><br />
 <a href="/en-US/docs/Web/Reference/Events/SSTabRestoring">SSTabRestoring</a><br />
 <a href="/en-US/docs/Web/Reference/Events/SSTabRestored">SSTabRestored</a><br />
 {{event("visibilitychange")}}</p>

<h3 id="Battery_events">Battery events</h3>

<p>{{event("chargingchange")}}<br />
 {{event("chargingtimechange")}}<br />
 {{event("dischargingtimechange")}}<br />
 {{event("levelchange")}}</p>

<h3 id="Call_events">Call events</h3>

<p>{{event("alerting")}}<br />
 {{event("busy")}}<br />
 {{event("callschanged")}}<br />
 {{event("cfstatechange")}}<br />
 {{event("connected")}}<br />
 {{event("connecting")}}<br />
 {{event("dialing")}}<br />
 {{event("disconnected")}}<br />
 {{event("disconnecting")}}<br />
 {{event("error_(Telephony)","error")}}<br />
 {{event("held")}}, {{event("holding")}}<br />
 {{event("incoming")}}<br />
 {{event("resuming")}}<br />
 {{event("statechange")}}<br />
 {{event("voicechange")}}</p>

<h3 id="Sensor_events">Sensor events</h3>

<p>{{event("compassneedscalibration")}}<br />
 {{event("devicelight")}}<br />
 {{event("devicemotion")}}<br />
 {{event("deviceorientation")}}<br />
 {{event("deviceproximity")}}<br />
 {{event("MozOrientation")}}<br />
 {{event("orientationchange")}}<br />
 {{event("userproximity")}}</p>

<h3 id="Smartcard_events">Smartcard events</h3>

<p>{{event("icccardlockerror")}}<br />
 {{event("iccinfochange")}}<br />
 {{event("smartcard-insert")}}<br />
 {{event("smartcard-remove")}}<br />
 {{event("stkcommand")}}<br />
 {{event("stksessionend")}}<br />
 {{event("cardstatechange")}}</p>

<h3 id="SMS_and_USSD_events">SMS and USSD events</h3>

<p>{{event("delivered")}}<br />
 {{event("received")}}<br />
 {{event("sent")}}<br />
 {{event("ussdreceived")}}</p>

<h3 id="Frame_events">Frame events</h3>

<p>{{event("mozbrowserclose")}}<br />
 {{event("mozbrowsercontextmenu")}}<br />
 {{event("mozbrowsererror")}}<br />
 {{event("mozbrowsericonchange")}}<br />
 {{event("mozbrowserlocationchange")}}<br />
 {{event("mozbrowserloadend")}}<br />
 {{event("mozbrowserloadstart")}}<br />
 {{event("mozbrowseropenwindow")}}<br />
 {{event("mozbrowsersecuritychange")}}<br />
 {{event("mozbrowsershowmodalprompt")}}&nbsp;(<a href="/en-US/docs/Web/Reference/Events/mozbrowsershowmodalprompt">link</a>)<br />
 {{event("mozbrowsertitlechange")}}<br />
 <a href="/en-US/docs/Web/Reference/Events/DOMFrameContentLoaded">DOMFrameContentLoaded</a></p>

<h3 id="DOM_mutation_events">DOM mutation events</h3>

<p><code><a href="/en-US/docs/DOM/Mutation_events">DOMAttributeNameChanged</a></code><br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMAttrModified</a></code><br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMCharacterDataModified</a></code><br />
 {{event("DOMContentLoaded")}}<br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMElementNameChanged</a></code><br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeInserted</a></code><br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeInsertedIntoDocument</a></code><br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeRemoved</a></code><br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeRemovedFromDocument</a></code><br />
 <code><a href="/en-US/docs/DOM/Mutation_events">DOMSubtreeModified</a></code></p>

<h3 id="Touch_events">Touch events</h3>

<p><a href="/en-US/docs/Web/Reference/Events/MozEdgeUIGesture">MozEdgeUIGesture</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozMagnifyGesture">MozMagnifyGesture</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozMagnifyGestureStart">MozMagnifyGestureStart</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozMagnifyGestureUpdate">MozMagnifyGestureUpdate</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozPressTapGesture">MozPressTapGesture</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozRotateGesture">MozRotateGesture</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozRotateGestureStart">MozRotateGestureStart</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozRotateGestureUpdate">MozRotateGestureUpdate</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozSwipeGesture">MozSwipeGesture</a><br />
 <a href="/en-US/docs/Web/Reference/Events/MozTapGesture">MozTapGesture</a><br />
 <a href="/en-US/DOM/Touch_events_(Mozilla_experimental)">MozTouchDown</a><br />
 <a href="/en-US/DOM/Touch_events_(Mozilla_experimental)">MozTouchMove</a><br />
 <a href="/en-US/DOM/Touch_events_(Mozilla_experimental)">MozTouchUp</a><br />
 {{event("touchcancel")}}<br />
 {{event("touchend")}}<br />
 {{event("touchenter")}}<br />
 {{event("touchleave")}}<br />
 {{event("touchmove")}}<br />
 {{event("touchstart")}}</p>

<h3 id="Pointer_events">Pointer events</h3>

<p>{{event("pointerover")}}<br />
 {{event("pointerenter")}}<br />
 {{event("pointerdown")}}<br />
 {{event("pointermove")}}<br />
 {{event("pointerup")}}<br />
 {{event("pointercancel")}}<br />
 {{event("pointerout")}}<br />
 {{event("pointerleave")}}<br />
 {{event("gotpointercapture")}}<br />
 {{event("lostpointercapture")}}</p>

<h2 id="Standard_events">Standard events</h2>

<p>These events are defined in official Web specifications, and should be common across browsers. Each event is listed along with the interface representing the object sent to recipients of the event (so you can find information about what data is provided with each event) as well as a link to the specification or specifications that define the event.</p>

<table class="standard-table" style="height:9388px; width:1781px">
 <thead>
  <tr>
   <th class="header" style="width: 220px;">Event Name</th>
   <th class="header" style="width: 90px;">Event Type</th>
   <th class="header" style="width: 100px;">Specification</th>
   <th class="header">Fired when...</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("abort")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-abort">DOM L3</a></td>
   <td>The loading of a resource has been aborted.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/abort_(ProgressEvent)">abort</a></code></td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/progress-events/">Progress</a> and <a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-abort">XMLHttpRequest</a></td>
   <td>Progression has been terminated (not due to an error).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/abort_indexedDB">abort</a></code></td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/IndexedDB/#database-interface">IndexedDB</a></td>
   <td>A transaction has been aborted.</td>
  </tr>
  <tr>
   <td>{{event("afterprint")}}{{gecko_minversion_inline("6")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/html5/webappapis.html#printing">HTML5</a></td>
   <td>The associated document has started printing or the print preview has been closed.</td>
  </tr>
  <tr>
   <td>{{event("animationend")}}</td>
   <td>{{domxref("AnimationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/css3-animations/#animation-events">CSS Animations</a></td>
   <td>A <a href="/en-US/docs/CSS/CSS_animations">CSS animation</a> has completed.</td>
  </tr>
  <tr>
   <td>{{event("animationiteration")}}</td>
   <td>{{domxref("AnimationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/css3-animations/#animation-events">CSS Animations</a></td>
   <td>A <a href="/en-US/docs/CSS/CSS_animations">CSS animation</a> is repeated.</td>
  </tr>
  <tr>
   <td>{{event("animationstart")}}</td>
   <td>{{domxref("AnimationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/css3-animations/#animation-events">CSS Animations</a></td>
   <td>A <a href="/en-US/docs/CSS/CSS_animations">CSS animation</a> has started.</td>
  </tr>
  <tr>
   <td>{{event("audioprocess")}}</td>
   <td>{{domxref("AudioProcessingEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Audio API', '#AudioProcessingEvent', 'audioprocess')}}</td>
   <td>The input buffer of a {{domxref("ScriptProcessorNode")}} is ready to be processed.</td>
  </tr>
  <tr>
   <td>{{event("audioend")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The user agent has finished capturing audio for speech recognition.</td>
  </tr>
  <tr>
   <td>{{event("audiostart")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The user agent has started to capture audio for speech recognition.</td>
  </tr>
  <tr>
   <td>{{event("beforeprint")}} {{gecko_minversion_inline("6")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/html5/webappapis.html#printing">HTML5</a></td>
   <td>The associated document is about to be printed or previewed for printing.</td>
  </tr>
  <tr>
   <td>{{event("beforeunload")}}</td>
   <td>{{domxref("BeforeUnloadEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/html5/browsers.html#unloading-documents">HTML5 </a></td>
   <td>The window, the document and its resources are about to be unloaded.</td>
  </tr>
  <tr>
   <td>{{event("beginEvent")}}</td>
   <td>{{domxref("TimeEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>A <a href="/en-US/docs/SVG/SVG_animation_with_SMIL">SMIL</a> animation element begins.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/blocked_indexedDB">blocked</a></code></td>
   <td>&nbsp;</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/IndexedDB/#request-api">IndexedDB</a></td>
   <td>An open connection to a database is blocking a <code>versionchange</code> transaction on the same database.</td>
  </tr>
  <tr>
   <td>{{event("blur")}}</td>
   <td>{{domxref("FocusEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-blur">DOM L3</a></td>
   <td>An element has lost focus (does not bubble).</td>
  </tr>
  <tr>
   <td>{{event("boundary")}} {{experimental_inline}}</td>
   <td>{{domxref("SpeechSynthesisEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The spoken utterance reaches a word or sentence boundary</td>
  </tr>
  <tr>
   <td>{{event("cached")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/html/wg/drafts/html/master/browsers.html#offline">Offline</a></td>
   <td>The resources listed in the manifest have been downloaded, and the application is now cached.</td>
  </tr>
  <tr>
   <td>{{event("canplay")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-canplay">HTML5 media</a></td>
   <td>The user agent can play the media, but estimates that not enough data has been loaded to play the media up to its end without having to stop for further buffering of content.</td>
  </tr>
  <tr>
   <td>{{event("canplaythrough")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-canplaythrough">HTML5 media</a></td>
   <td>The user agent can play the media up to its end without having to stop for further buffering of content.</td>
  </tr>
  <tr>
   <td>{{event("change")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-2-Events/events.html">DOM L2</a>, <a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#event-input-change">HTML5</a></td>
   <td>The <code>change</code> event is fired for {{HTMLElement("input")}}, {{HTMLElement("select")}}, and {{HTMLElement("textarea")}} elements when a change to the element's value is committed by the user.</td>
  </tr>
  <tr>
   <td>{{event("chargingchange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html">Battery status</a></td>
   <td>The battery begins or stops charging.</td>
  </tr>
  <tr>
   <td>{{event("chargingtimechange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html">Battery status</a></td>
   <td>The <code>chargingTime</code> attribute has been updated.</td>
  </tr>
  <tr>
   <td>{{event("checking")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/html/wg/drafts/html/master/browsers.html#offline">Offline</a></td>
   <td>The user agent is checking for an update, or attempting to download the cache manifest for the first time.</td>
  </tr>
  <tr>
   <td>{{event("click")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click">DOM L3</a></td>
   <td>A pointing device button has been pressed and released on an element.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/close_websocket">close</a></code></td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/websockets/">WebSocket</a></td>
   <td>A WebSocket connection has been closed.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/complete_indexedDB">complete</a></code></td>
   <td>&nbsp;</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/IndexedDB/#transaction">IndexedDB</a></td>
   <td>A transaction successfully completed.</td>
  </tr>
  <tr>
   <td>{{event("complete")}}</td>
   <td>{{domxref("OfflineAudioCompletionEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Audio API', '#OfflineAudioCompletionEvent-section', 'OfflineAudioCompletionEvent')}}</td>
   <td>The rendering of an {{domxref("OfflineAudioContext")}} is terminated.</td>
  </tr>
  <tr>
   <td>{{event("compositionend")}}{{gecko_minversion_inline("9")}}</td>
   <td>{{domxref("CompositionEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-compositionend">DOM L3</a></td>
   <td>The composition of a passage of text has been completed or canceled.</td>
  </tr>
  <tr>
   <td>{{event("compositionstart")}}{{gecko_minversion_inline("9")}}</td>
   <td>{{domxref("CompositionEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-compositionstart">DOM L3</a></td>
   <td>The composition of a passage of text is prepared (similar to keydown for a keyboard input, but works with other inputs such as speech recognition).</td>
  </tr>
  <tr>
   <td>{{event("compositionupdate")}}{{gecko_minversion_inline("9")}}</td>
   <td>{{domxref("CompositionEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-compositionupdate">DOM L3</a></td>
   <td>A character is added to a passage of text being composed.</td>
  </tr>
  <tr>
   <td>{{event("contextmenu")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://html.spec.whatwg.org/multipage/forms.html#context-menus">HTML5</a></td>
   <td>The right button of the mouse is clicked (before the context menu is displayed).</td>
  </tr>
  <tr>
   <td>{{event("copy")}}</td>
   <td>{{domxref("ClipboardEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/clipboard-apis/#copy-event">Clipboard</a></td>
   <td>The text selection has been added to the clipboard.</td>
  </tr>
  <tr>
   <td>{{event("cut")}}</td>
   <td>{{domxref("ClipboardEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/clipboard-apis/#cut-event">Clipboard</a></td>
   <td>The text selection has been removed from the document and added to the clipboard.</td>
  </tr>
  <tr>
   <td>{{event("dblclick")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-dblclick">DOM L3</a></td>
   <td>A pointing device button is clicked twice on an element.</td>
  </tr>
  <tr>
   <td>{{event("devicechange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName("Media Capture")}}</td>
   <td>A media device such as a camera, microphone, or speaker is connected or removed from the system.</td>
  </tr>
  <tr>
   <td>{{event("devicelight")}}</td>
   <td>{{domxref("DeviceLightEvent")}}</td>
   <td style="white-space: nowrap;"><a class="external" href="https://dvcs.w3.org/hg/dap/raw-file/tip/light/Overview.html" lang="en" title="The definition of 'Ambient Light Events' in that specification.">Ambient Light Events</a></td>
   <td>Fresh data is available from a light sensor.</td>
  </tr>
  <tr>
   <td>{{event("devicemotion")}}</td>
   <td>{{domxref("DeviceMotionEvent")}}</td>
   <td style="white-space: nowrap;"><a class="external" href="https://dev.w3.org/geo/api/spec-source-orientation.html" lang="en" title="The 'Device Orientation Events' specification">Device Orientation Events</a></td>
   <td>Fresh data is available from a motion sensor.</td>
  </tr>
  <tr>
   <td>{{event("deviceorientation")}}</td>
   <td>{{domxref("DeviceOrientationEvent")}}</td>
   <td style="white-space: nowrap;"><a class="external" href="https://dev.w3.org/geo/api/spec-source-orientation.html" lang="en" title="The 'Device Orientation Events' specification">Device Orientation Events</a></td>
   <td>Fresh data is available from an orientation sensor.</td>
  </tr>
  <tr>
   <td>{{event("deviceproximity")}}</td>
   <td>{{domxref("DeviceProximityEvent")}}</td>
   <td style="white-space: nowrap;"><a class="external" href="https://dvcs.w3.org/hg/dap/raw-file/tip/proximity/Overview.html" lang="en" title="The definition of 'Proximity Events' in that specification.">Proximity Events</a></td>
   <td>Fresh data is available from a proximity sensor (indicates an approximated distance between the device and a nearby object).</td>
  </tr>
  <tr>
   <td>{{event("dischargingtimechange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html">Battery status</a></td>
   <td>The <code>dischargingTime</code> attribute has been updated.</td>
  </tr>
  <tr>
   <td><code>DOMActivate</code> {{deprecated_inline}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMActivate">DOM L3</a></td>
   <td>A button, link or state changing element is activated (use {{event("click")}} instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMAttributeNameChanged</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationNameEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/#event-type-DOMAttributeNameChanged">DOM L3</a> {{removed_inline}}</td>
   <td>The name of an attribute changed (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMAttrModified</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMAttrModified">DOM L3</a></td>
   <td>The value of an attribute has been modified (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMCharacterDataModified</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMCharacterDataModified">DOM L3</a></td>
   <td>A text or another <a href="/en-US/docs/DOM/CharacterData">CharacterData</a> has changed (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td>{{event("DOMContentLoaded")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-end.html#the-end">HTML5</a></td>
   <td>The document has finished loading (but not its dependent resources).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMElementNameChanged</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationNameEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/#event-type-DOMElementNameChanged">DOM L3</a> {{removed_inline}}</td>
   <td>The name of an element changed (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td><code>DOMFocusIn</code> {{deprecated_inline}} {{notimplemented_inline}}</td>
   <td>{{domxref("FocusEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMFocusIn">DOM L3</a></td>
   <td>An element has received focus (use {{event("focus")}} or {{event("focusin")}} instead).</td>
  </tr>
  <tr>
   <td><code>DOMFocusOut</code> {{deprecated_inline}} {{notimplemented_inline}}</td>
   <td>{{domxref("FocusEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMFocusOut">DOM L3</a></td>
   <td>An element has lost focus (use {{event("blur")}} or {{event("focusout")}} instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeInserted</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeInserted">DOM L3</a></td>
   <td>A node has been added as a child of another node (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeInsertedIntoDocument</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeInsertedIntoDocument">DOM L3</a></td>
   <td>A node has been inserted into the document (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeRemoved</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeRemoved">DOM L3</a></td>
   <td>A node has been removed from its parent node (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMNodeRemovedFromDocument</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeRemovedFromDocument">DOM L3</a></td>
   <td>A node has been removed from the document (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/DOM/Mutation_events">DOMSubtreeModified</a></code> {{deprecated_inline}}</td>
   <td>{{domxref("MutationEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMSubtreeModified">DOM L3</a></td>
   <td>A change happened in the document (use <a href="/en-US/docs/DOM/MutationObserver">mutation observers</a> instead).</td>
  </tr>
  <tr>
   <td>{{event("downloading")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/html/wg/drafts/html/master/browsers.html#offline">Offline</a></td>
   <td>The user agent has found an update and is fetching it, or is downloading the resources listed by the cache manifest for the first time.</td>
  </tr>
  <tr>
   <td>{{event("drag")}}</td>
   <td>{{domxref("DragEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-drag">HTML5</a></td>
   <td>An element or text selection is being dragged (every 350ms).</td>
  </tr>
  <tr>
   <td>{{event("dragend")}}</td>
   <td>{{domxref("DragEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragend">HTML5</a></td>
   <td>A drag operation is being ended (by releasing a mouse button or hitting the escape key).</td>
  </tr>
  <tr>
   <td>{{event("dragenter")}}</td>
   <td>{{domxref("DragEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragenter">HTML5</a></td>
   <td>A dragged element or text selection enters a valid drop target.</td>
  </tr>
  <tr>
   <td>{{event("dragleave")}}</td>
   <td>{{domxref("DragEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragleave">HTML5</a></td>
   <td>A dragged element or text selection leaves a valid drop target.</td>
  </tr>
  <tr>
   <td>{{event("dragover")}}</td>
   <td>{{domxref("DragEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragover">HTML5</a></td>
   <td>An element or text selection is being dragged over a valid drop target (every 350ms).</td>
  </tr>
  <tr>
   <td>{{event("dragstart")}}</td>
   <td>{{domxref("DragEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragstart">HTML5</a></td>
   <td>The user starts dragging an element or text selection.</td>
  </tr>
  <tr>
   <td>{{event("drop")}}</td>
   <td>{{domxref("DragEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-drop">HTML5</a></td>
   <td>An element is dropped on a valid drop target.</td>
  </tr>
  <tr>
   <td>{{event("durationchange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-durationchange">HTML5 media</a></td>
   <td>The <code>duration</code> attribute has been updated.</td>
  </tr>
  <tr>
   <td>{{event("emptied")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-emptied">HTML5 media</a></td>
   <td>The media has become empty; for example, this event is sent if the media has already been loaded (or partially loaded), and the <a href="/en-US/docs/XPCOM_Interface_Reference/NsIDOMHTMLMediaElement" rel="internal"><code>load()</code></a>&nbsp;method is called to reload it.</td>
  </tr>
  <tr>
   <td>{{event("end_(SpeechRecognition)","end")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The speech recognition service has disconnected.</td>
  </tr>
  <tr>
   <td>{{event("end_(SpeechSynthesis)","end")}} {{experimental_inline}}</td>
   <td>{{domxref("SpeechSynthesisEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName("Web Speech API")}}</td>
   <td>The utterance has finished being spoken.</td>
  </tr>
  <tr>
   <td>{{event("ended")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-ended">HTML5 media</a></td>
   <td>Playback has stopped because the end of the media was reached.</td>
  </tr>
  <tr>
   <td>{{event("ended_(Web_Audio)", "ended")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName("Web Audio API")}}</td>
   <td>Playback has stopped because the end of the media was reached.</td>
  </tr>
  <tr>
   <td>{{event("endEvent")}}</td>
   <td>{{domxref("TimeEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>A <a href="/en-US/docs/SVG/SVG_animation_with_SMIL">SMIL</a> animation element ends.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-error">DOM L3</a></td>
   <td>A resource failed to load.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/progress-events/">Progress</a><span> and </span><a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-error">XMLHttpRequest</a></td>
   <td>Progression has failed.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/html/wg/drafts/html/master/browsers.html#offline">Offline</a></td>
   <td>An error occurred while downloading the cache manifest or updating the content of the application.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/websockets/">WebSocket</a></td>
   <td>A WebSocket connection has been closed with prejudice (some data couldn't be sent for example).</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dev.w3.org/html5/eventsource/">Server Sent Events</a></td>
   <td>An event source connection has been failed.</td>
  </tr>
  <tr>
   <td>{{event("error")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/IndexedDB/#request-api">IndexedDB</a></td>
   <td>A request caused an error and failed.</td>
  </tr>
  <tr>
   <td>{{event("error_(SpeechRecognitionError)","error")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>A speech recognition error occurs.</td>
  </tr>
  <tr>
   <td>{{event("error_(SpeechSynthesisError)","error")}}</td>
   <td>{{domxref("SpeechSynthesisErrorEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>An error occurs that prevents the utterance from being successfully spoken.</td>
  </tr>
  <tr>
   <td>{{event("focus")}}</td>
   <td>{{domxref("FocusEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-focus">DOM L3</a></td>
   <td>An element has received focus (does not bubble).</td>
  </tr>
  <tr>
   <td>{{event("focusin")}}{{notimplemented_inline(687787)}}</td>
   <td>{{domxref("FocusEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-focusIn">DOM L3</a></td>
   <td>An element is about to receive focus (bubbles).</td>
  </tr>
  <tr>
   <td>{{event("focusout")}}{{notimplemented_inline(687787)}}</td>
   <td>{{domxref("FocusEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-focusout">DOM L3</a></td>
   <td>An element is about to lose focus (bubbles).</td>
  </tr>
  <tr>
   <td>{{event("fullscreenchange")}}{{gecko_minversion_inline("9")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html#api">Full Screen</a></td>
   <td>An element was turned to fullscreen mode or back to normal mode.</td>
  </tr>
  <tr>
   <td>{{event("fullscreenerror")}}{{gecko_minversion_inline("9")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html#api">Full Screen</a></td>
   <td>It was impossible to switch to fullscreen mode for technical reasons or because the permission was denied.</td>
  </tr>
  <tr>
   <td>{{event("gamepadconnected")}}</td>
   <td>{{domxref("GamepadEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/gamepad/#the-gamepadconnected-event">Gamepad</a></td>
   <td>A gamepad has been connected.</td>
  </tr>
  <tr>
   <td>{{event("gamepaddisconnected")}}</td>
   <td>{{domxref("GamepadEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/gamepad/#the-gamepaddisconnected-event">Gamepad</a></td>
   <td>A gamepad has been disconnected.</td>
  </tr>
  <tr>
   <td>{{event("gotpointercapture")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-gotpointercapture-event">Pointer Events</a></td>
   <td>Element receives pointer capture.</td>
  </tr>
  <tr>
   <td>{{event("hashchange")}}</td>
   <td>{{domxref("HashChangeEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-hashchange">HTML5</a></td>
   <td>The fragment identifier of the URL has changed (the part of the URL after the #).</td>
  </tr>
  <tr>
   <td>{{event("lostpointercapture")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-lostpointercapture-event">Pointer Events</a></td>
   <td>Element lost pointer capture.</td>
  </tr>
  <tr>
   <td>{{event("input")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/html5/forms.html#common-event-behaviors">HTML5</a></td>
   <td>The value of an element changes or the content of an element with the attribute <a href="/en-US/docs/DOM/Element.contentEditable">contenteditable</a> is modified.</td>
  </tr>
  <tr>
   <td>{{event("invalid")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#constraint-validation">HTML5</a></td>
   <td>A submittable element has been checked and doesn't satisfy its constraints.</td>
  </tr>
  <tr>
   <td>{{event("keydown")}}</td>
   <td>{{domxref("KeyboardEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-keydown">DOM L3</a></td>
   <td>A key is pressed down.</td>
  </tr>
  <tr>
   <td>{{event("keypress")}}</td>
   <td>{{domxref("KeyboardEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-keypress">DOM L3</a></td>
   <td>A key is pressed down and that key normally produces a character value (use input instead).</td>
  </tr>
  <tr>
   <td>{{event("keyup")}}</td>
   <td>{{domxref("KeyboardEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-keyup">DOM L3</a></td>
   <td>A key is released.</td>
  </tr>
  <tr>
   <td>{{event("languagechange")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{ SpecName('HTML5.1', '#dom-navigator-languages', 'NavigatorLanguage.languages') }}</td>
   <td>The user's preferred languages have changed.</td>
  </tr>
  <tr>
   <td>{{event("levelchange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html">Battery status</a></td>
   <td>The <code>level</code> attribute has been updated.</td>
  </tr>
  <tr>
   <td>{{event("load")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-load">DOM L3</a></td>
   <td>A resource and its dependent resources have finished loading.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/load_(ProgressEvent)">load</a></code></td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/progress-events/">Progress</a><span> <span>and </span></span><a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-load">XMLHttpRequest</a></td>
   <td>Progression has been successful.</td>
  </tr>
  <tr>
   <td>{{event("loadeddata")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-loadeddata">HTML5 media</a></td>
   <td>The first frame of the media has finished loading.</td>
  </tr>
  <tr>
   <td>{{event("loadedmetadata")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-loadedmetadata">HTML5 media</a></td>
   <td>The metadata has been loaded.</td>
  </tr>
  <tr>
   <td>{{event("loadend")}}</td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/progress-events/">Progress</a><span> <span>and </span></span><a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-loadend">XMLHttpRequest</a></td>
   <td>Progress has stopped (after "error", "abort" or "load" have been dispatched).</td>
  </tr>
  <tr>
   <td>{{event("loadstart")}}</td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/progress-events/">Progress </a><span>and </span><a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-loadstart">XMLHttpRequest</a></td>
   <td>Progress has begun.</td>
  </tr>
  <tr>
   <td>{{event("mark")}} {{experimental_inline}}</td>
   <td>{{domxref("SpeechSynthesisEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The spoken utterance reaches a named SSML "mark" tag.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/message_websocket">message</a></code></td>
   <td>{{domxref("MessageEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/websockets/">WebSocket</a></td>
   <td>A message is received through a WebSocket.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/message_webworker">message</a></code></td>
   <td>{{domxref("MessageEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/workers/#communicating-with-a-dedicated-worker">Web Workers</a></td>
   <td>A message is received from a Web Worker.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/message_webmessaging">message</a></code></td>
   <td>{{domxref("MessageEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/webmessaging/">Web Messaging</a></td>
   <td>A message is received from a child (i)frame or a parent window.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/message_serversentevents">message</a></code></td>
   <td>{{domxref("MessageEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://dev.w3.org/html5/eventsource/">Server Sent Events</a></td>
   <td>A message is received through an event source.</td>
  </tr>
  <tr>
   <td>{{event("message_(ServiceWorker)","message")}} {{experimental_inline}}</td>
   <td>{{domxref("ServiceWorkerMessageEvent")}} or {{domxref("ExtendableMessageEvent")}}, depending on context.</td>
   <td style="white-space: nowrap;"><a href="/en-US/docs/Web/API/Service_Worker_API">Service Workers</a></td>
   <td>A message is received from a service worker, or a message is received in a service worker from another context.</td>
  </tr>
  <tr>
   <td>{{event("mousedown")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-mousedown">DOM L3</a></td>
   <td>A pointing device button (usually a mouse) is pressed on an element.</td>
  </tr>
  <tr>
   <td>{{event("mouseenter")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseenter">DOM L3</a></td>
   <td>A pointing device is moved onto the element that has the listener attached.</td>
  </tr>
  <tr>
   <td>{{event("mouseleave")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseleave">DOM L3</a></td>
   <td>A pointing device is moved off the element that has the listener attached.</td>
  </tr>
  <tr>
   <td>{{event("mousemove")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-mousemove">DOM L3</a></td>
   <td>A pointing device is moved over an element.</td>
  </tr>
  <tr>
   <td>{{event("mouseout")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseout">DOM L3</a></td>
   <td>A pointing device is moved off the element that has the listener attached or off one of its children.</td>
  </tr>
  <tr>
   <td>{{event("mouseover")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseover">DOM L3</a></td>
   <td>A pointing device is moved onto the element that has the listener attached or onto one of its children.</td>
  </tr>
  <tr>
   <td>{{event("mouseup")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseup">DOM L3</a></td>
   <td>A pointing device button is released over an element.</td>
  </tr>
  <tr>
   <td>{{event("nomatch")}} {{experimental_inline}}</td>
   <td>{{domxref("SpeechRecognitionEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The speech recognition service returns a final result with no significant recognition.</td>
  </tr>
  <tr>
   <td>{{event("notificationclick")}}</td>
   <td>{{domxref("NotificationEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Notifications','#dom-serviceworkerglobalscope-onnotificationclick','onnotificationclick')}}</td>
   <td>A system notification<span style="line-height:19.0909080505371px"> spawned by {{domxref("ServiceWorkerRegistration.showNotification()")}} has been clicked.</span></td>
  </tr>
  <tr>
   <td>{{event("noupdate")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/html/wg/drafts/html/master/browsers.html#offline">Offline</a></td>
   <td>The manifest hadn't changed.</td>
  </tr>
  <tr>
   <td>{{event("obsolete")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/html/wg/drafts/html/master/browsers.html#offline">Offline</a></td>
   <td>The manifest was found to have become a 404 or 410 page, so the application cache is being deleted.</td>
  </tr>
  <tr>
   <td>{{event("offline")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html#event-offline">HTML5 offline</a></td>
   <td>The browser has lost access to the network.</td>
  </tr>
  <tr>
   <td>{{event("online")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html#event-online">HTML5 offline</a></td>
   <td>The browser has gained access to the network (but particular websites might be unreachable).</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/open_websocket">open</a></code></td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/websockets/">WebSocket</a></td>
   <td>A WebSocket connection has been established.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/open_serversentevents">open</a></code></td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dev.w3.org/html5/eventsource/">Server Sent Events</a></td>
   <td>An event source connection has been established.</td>
  </tr>
  <tr>
   <td>{{event("orientationchange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/screen-orientation/">Screen Orientation</a></td>
   <td>The orientation of the device (portrait/landscape) has changed</td>
  </tr>
  <tr>
   <td>{{event("pagehide")}}</td>
   <td>{{domxref("PageTransitionEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-pagehide">HTML5</a></td>
   <td>A session history entry is being traversed from.</td>
  </tr>
  <tr>
   <td>{{event("pageshow")}}</td>
   <td>{{domxref("PageTransitionEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-pageshow">HTML5</a></td>
   <td>A session history entry is being traversed to.</td>
  </tr>
  <tr>
   <td>{{event("paste")}}</td>
   <td>{{domxref("ClipboardEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/clipboard-apis/#paste-event">Clipboard</a></td>
   <td>Data has been transferred from the system clipboard to the document.</td>
  </tr>
  <tr>
   <td>{{event("pause")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-pause">HTML5 media</a></td>
   <td>Playback has been paused.</td>
  </tr>
  <tr>
   <td>{{event("pause_(SpeechSynthesis)", "pause")}} {{experimental_inline}}</td>
   <td>{{domxref("SpeechSynthesisEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The utterance is paused part way through.</td>
  </tr>
  <tr>
   <td>{{event("pointercancel")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointercancel-event">Pointer Events</a></td>
   <td>The pointer is unlikely to produce any more events.</td>
  </tr>
  <tr>
   <td>{{event("pointerdown")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointerdown-event">Pointer Events</a></td>
   <td>The pointer enters the active buttons state.</td>
  </tr>
  <tr>
   <td>{{event("pointerenter")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointerenter-event">Pointer Events</a></td>
   <td>Pointing device is moved inside the hit-testing boundary.</td>
  </tr>
  <tr>
   <td>{{event("pointerleave")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointerleave-event">Pointer Events</a></td>
   <td>Pointing device is moved out of the hit-testing boundary.</td>
  </tr>
  <tr>
   <td>{{event("pointerlockchange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerlock/#pointerlockchange-and-pointerlockerror-events">Pointer Lock</a></td>
   <td>The pointer was locked or released.</td>
  </tr>
  <tr>
   <td>{{event("pointerlockerror")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerlock/#pointerlockchange-and-pointerlockerror-events">Pointer Lock</a></td>
   <td>It was impossible to lock the pointer for technical reasons or because the permission was denied.</td>
  </tr>
  <tr>
   <td>{{event("pointermove")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointermove-event">Pointer Events</a></td>
   <td>The pointer changed coordinates.</td>
  </tr>
  <tr>
   <td>{{event("pointerout")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointerout-event">Pointer Events</a></td>
   <td>The pointing device moved out of hit-testing boundary or leaves detectable hover range.</td>
  </tr>
  <tr>
   <td>{{event("pointerover")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointerover-event">Pointer Events</a></td>
   <td>The pointing device is moved into the hit-testing boundary.</td>
  </tr>
  <tr>
   <td>{{event("pointerup")}}</td>
   <td>{{domxref("PointerEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/pointerevents/#the-pointerup-event">Pointer Events</a></td>
   <td>The pointer leaves the active buttons state.</td>
  </tr>
  <tr>
   <td>{{event("play")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-play">HTML5 media</a></td>
   <td>Playback has begun.</td>
  </tr>
  <tr>
   <td>{{event("playing")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-playing">HTML5 media</a></td>
   <td>Playback is ready to start after having been paused or delayed due to lack of data.</td>
  </tr>
  <tr>
   <td>{{event("popstate")}}</td>
   <td>{{domxref("PopStateEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-popstate">HTML5</a></td>
   <td>A session history entry is being navigated to (in certain cases).</td>
  </tr>
  <tr>
   <td>{{event("progress")}}</td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/progress-events/">Progress</a><span> <span>and </span></span><a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-progress">XMLHttpRequest</a></td>
   <td>In progress.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/progress_(appcache_event)">progress</a></code></td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/html/wg/drafts/html/master/browsers.html#offline">Offline</a></td>
   <td>The user agent is downloading resources listed by the manifest.</td>
  </tr>
  <tr>
   <td>{{event("push")}}</td>
   <td>{{domxref("PushEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName("Push API")}}</td>
   <td>A <a href="/en-US/docs/Web/API/Service_Worker_API">Service Worker</a> has received a push message.</td>
  </tr>
  <tr>
   <td>{{event("pushsubscriptionchange")}}</td>
   <td>{{domxref("PushEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName("Push API")}}</td>
   <td>A <a href="/en-US/docs/Web/API/PushSubscription">PushSubscription</a> has expired.</td>
  </tr>
  <tr>
   <td>{{event("ratechange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-ratechange">HTML5 media</a></td>
   <td>The playback rate has changed.</td>
  </tr>
  <tr>
   <td>{{event("readystatechange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><span>HTML5 <span>and </span></span><a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-readystatechange">XMLHttpRequest</a></td>
   <td>The readyState attribute of a document has changed.</td>
  </tr>
  <tr>
   <td>{{event("repeatEvent")}}</td>
   <td>{{domxref("TimeEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>A <a href="/en-US/docs/SVG/SVG_animation_with_SMIL">SMIL</a> animation element is repeated.</td>
  </tr>
  <tr>
   <td>{{event("reset")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-2-Events/events.html">DOM L2</a>, <a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#form-submission-0#resetting-a-form">HTML5</a></td>
   <td>A form is reset.</td>
  </tr>
  <tr>
   <td>{{event("resize")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-resize">DOM L3</a></td>
   <td>The document view has been resized.</td>
  </tr>
  <tr>
   <td>{{event("resourcetimingbufferfull")}}</td>
   <td>{{domxref("Performance")}}</td>
   <td style="white-space: nowrap;"><a href="https://w3c.github.io/resource-timing/#dom-performance-onresourcetimingbufferfull">Resource Timing</a></td>
   <td>The browser's resource timing buffer is full.</td>
  </tr>
  <tr>
   <td>{{event("result")}} {{experimental_inline}}</td>
   <td>{{domxref("SpeechRecognitionEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The speech recognition service returns a result — a word or phrase has been positively recognized and this has been communicated back to the app.</td>
  </tr>
  <tr>
   <td>{{event("resume")}} {{experimental_inline}}</td>
   <td>{{domxref("SpeechSynthesisEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>A paused utterance is resumed.</td>
  </tr>
  <tr>
   <td>{{event("scroll")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-scroll">DOM L3</a></td>
   <td>The document view or an element has been scrolled.</td>
  </tr>
  <tr>
   <td>{{event("seeked")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-seeked">HTML5 media</a></td>
   <td>A <em>seek</em> operation completed.</td>
  </tr>
  <tr>
   <td>{{event("seeking")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-seeking">HTML5 media</a></td>
   <td>A <em>seek</em> operation began.</td>
  </tr>
  <tr>
   <td>{{event("select")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-select">DOM L3</a></td>
   <td>Some text is being selected.</td>
  </tr>
  <tr>
   <td>{{event("selectstart")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{ SpecName('Selection API')}}</td>
   <td>A selection just started.</td>
  </tr>
  <tr>
   <td>{{event("selectionchange")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{ SpecName('Selection API')}}</td>
   <td>The selection in the document has been changed.</td>
  </tr>
  <tr>
   <td>{{event("show")}}</td>
   <td>{{domxref("MouseEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/html5/interactive-elements.html#context-menus">HTML5</a></td>
   <td>A contextmenu event was fired on/bubbled to an element that has a <a href="/en-US/docs/DOM/element.contextmenu">contextmenu</a> attribute</td>
  </tr>
  <tr>
   <td>{{event("soundend")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>Any sound — recognisable speech or not — has stopped being detected.</td>
  </tr>
  <tr>
   <td>{{event("soundstart")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>Any sound — recognisable speech or not — has been detected.</td>
  </tr>
  <tr>
   <td>{{event("speechend")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>Speech recognised by the speech recognition service has stopped being detected.</td>
  </tr>
  <tr>
   <td>{{event("speechstart")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>Sound that is recognised by the speech recognition service as speech has been detected.</td>
  </tr>
  <tr>
   <td>{{event("stalled")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-stalled">HTML5 media</a></td>
   <td>The user agent is trying to fetch media data, but data is unexpectedly not forthcoming.</td>
  </tr>
  <tr>
   <td>{{event("start_(SpeechRecognition)","start")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The speech recognition service has begun listening to incoming audio with intent to recognize grammars associated with the current <code>SpeechRecognition</code>.</td>
  </tr>
  <tr>
   <td>{{event("start_(SpeechSynthesis)","start")}}</td>
   <td>{{domxref("SpeechSynthesisEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The utterance has begun to be spoken.</td>
  </tr>
  <tr>
   <td>{{event("storage")}}</td>
   <td>{{domxref("StorageEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/webstorage/#the-storage-event">Web Storage</a></td>
   <td>A storage area (<a href="/en-US/docs/DOM/Storage#localStorage">localStorage</a> or <a href="/en-US/docs/DOM/Storage#sessionStorage">sessionStorage</a>) has changed.</td>
  </tr>
  <tr>
   <td>{{event("submit")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-2-Events/events.html">DOM L2</a>, <a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#form-submission-algorithm">HTML5</a></td>
   <td>A form is submitted.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/success_indexedDB">success</a></code></td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/IndexedDB/#request-api">IndexedDB</a></td>
   <td>A request successfully completed.</td>
  </tr>
  <tr>
   <td>{{event("suspend")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-suspend">HTML5 media</a></td>
   <td>Media data loading has been suspended.</td>
  </tr>
  <tr>
   <td>{{event("SVGAbort")}}</td>
   <td>{{domxref("SVGEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>Page loading has been stopped before the <a href="/en-US/docs/SVG">SVG</a> was loaded.</td>
  </tr>
  <tr>
   <td>{{event("SVGError")}}</td>
   <td>{{domxref("SVGEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>An error has occurred before the <a href="/en-US/docs/SVG">SVG</a> was loaded.</td>
  </tr>
  <tr>
   <td>{{event("SVGLoad")}}</td>
   <td>{{domxref("SVGEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>An <a href="/en-US/docs/SVG">SVG</a> document has been loaded and parsed.</td>
  </tr>
  <tr>
   <td>{{event("SVGResize")}}</td>
   <td>{{domxref("SVGEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>An <a href="/en-US/docs/SVG">SVG</a> document is being resized.</td>
  </tr>
  <tr>
   <td>{{event("SVGScroll")}}</td>
   <td>{{domxref("SVGEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>An <a href="/en-US/docs/SVG">SVG</a> document is being scrolled.</td>
  </tr>
  <tr>
   <td>{{event("SVGUnload")}}</td>
   <td>{{domxref("SVGEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>An <a href="/en-US/docs/SVG">SVG</a> document has been removed from a window or frame.</td>
  </tr>
  <tr>
   <td>{{event("SVGZoom")}}</td>
   <td>{{domxref("SVGZoomEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/SVG/interact.html#SVGEvents">SVG</a></td>
   <td>An <a href="/en-US/docs/SVG">SVG</a> document is being zoomed.</td>
  </tr>
  <tr>
   <td>{{event("timeout")}}</td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/XMLHttpRequest/#event-xhr-timeout">XMLHttpRequest</a></td>
   <td>&nbsp;</td>
  </tr>
  <tr>
   <td>{{event("timeupdate")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-timeupdate">HTML5 media</a></td>
   <td>The time indicated by the <code>currentTime</code> attribute has been updated.</td>
  </tr>
  <tr>
   <td>{{event("touchcancel")}}</td>
   <td>{{domxref("TouchEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/touch-events/">Touch Events</a></td>
   <td>A touch point has been disrupted in an implementation-specific manners (too many touch points for example).</td>
  </tr>
  <tr>
   <td>{{event("touchend")}}</td>
   <td>{{domxref("TouchEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/touch-events/#the-touchend-event">Touch Events</a></td>
   <td>A touch point is removed from the touch surface.</td>
  </tr>
  <tr>
   <td>{{event("touchmove")}}</td>
   <td>{{domxref("TouchEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/touch-events/#the-touchmove-event">Touch Events</a></td>
   <td>A touch point is moved along the touch surface.</td>
  </tr>
  <tr>
   <td>{{event("touchstart")}}</td>
   <td>{{domxref("TouchEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/touch-events/#the-touchstart---------event">Touch Events</a></td>
   <td>A touch point is placed on the touch surface.</td>
  </tr>
  <tr>
   <td>{{event("transitionend")}}</td>
   <td>{{domxref("TransitionEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/css3-transitions/#transition-events">CSS Transitions</a></td>
   <td>A <a href="/en-US/docs/CSS/CSS_transitions">CSS transition</a> has completed.</td>
  </tr>
  <tr>
   <td>{{event("unload")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-unload">DOM L3</a></td>
   <td>The document or a dependent resource is being unloaded.</td>
  </tr>
  <tr>
   <td>{{event("updateready")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://dev.w3.org/html5/spec/offline.html">Offline</a></td>
   <td>The resources listed in the manifest have been newly redownloaded, and the script can use <code>swapCache()</code> to switch to the new cache.</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/upgradeneeded_indexedDB">upgradeneeded</a></code></td>
   <td>&nbsp;</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/IndexedDB/#request-api">IndexedDB</a></td>
   <td>An attempt was made to open a database with a version number higher than its current version. A <code>versionchange</code> transaction has been created.</td>
  </tr>
  <tr>
   <td>{{event("userproximity")}}</td>
   <td>{{domxref("UserProximityEvent")}}</td>
   <td style="white-space: nowrap;">{{SpecName("Proximity Events")}}</td>
   <td>Fresh data is available from a proximity sensor (indicates whether the nearby object is <code>near</code> the device or not).</td>
  </tr>
  <tr>
   <td>{{event("voiceschanged")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;">{{SpecName('Web Speech API')}}</td>
   <td>The list of {{domxref("SpeechSynthesisVoice")}} objects that would be returned by the {{domxref("SpeechSynthesis.getVoices()")}} method has changed (when the {{event("voiceschanged")}} event fires.)</td>
  </tr>
  <tr>
   <td><code><a href="/en-US/docs/Web/Reference/Events/versionchange_indexedDB">versionchange</a></code></td>
   <td>&nbsp;</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/IndexedDB/#database-interface">IndexedDB</a></td>
   <td>A <code>versionchange</code> transaction completed.</td>
  </tr>
  <tr>
   <td>{{event("visibilitychange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/page-visibility/#sec-visibilitychange-event">Page visibility</a></td>
   <td>The content of a tab has become visible or has been hidden.</td>
  </tr>
  <tr>
   <td>{{event("volumechange")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-volumechange">HTML5 media</a></td>
   <td>The volume has changed.</td>
  </tr>
  <tr>
   <td>{{event("vrdisplayconnected")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="/en-US/docs/Web/API/WebVR_API">WebVR API</a></td>
   <td>A compatible VR device has been connected to the computer.</td>
  </tr>
  <tr>
   <td>{{event("vrdisplaydisconnected")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="/en-US/docs/Web/API/WebVR_API">WebVR API</a></td>
   <td>A compatible VR device has been disconnected from the computer.</td>
  </tr>
  <tr>
   <td>{{event("vrdisplaypresentchange")}} {{experimental_inline}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="/en-US/docs/Web/API/WebVR_API">WebVR API</a></td>
   <td>The presenting state of a VR device has changed — i.e. from presenting to not presenting, or vice versa.</td>
  </tr>
  <tr>
   <td>{{event("waiting")}}</td>
   <td>{{domxref("Event")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-waiting">HTML5 media</a></td>
   <td>Playback has stopped because of a temporary lack of data.</td>
  </tr>
  <tr>
   <td>{{event("wheel")}}{{gecko_minversion_inline("17")}}</td>
   <td>{{domxref("WheelEvent")}}</td>
   <td style="white-space: nowrap;"><a href="https://www.w3.org/TR/DOM-Level-3-Events/#event-type-wheel">DOM L3</a></td>
   <td>A wheel button of a pointing device is rotated in any direction.</td>
  </tr>
 </tbody>
</table>

<h2 id="Non-standard_events">Non-standard events</h2>

<table class="standard-table" style="width:100%">
 <thead>
  <tr>
   <th class="header" style="width: 220px;">Event Name</th>
   <th class="header" style="width: 90px;">Event Type</th>
   <th class="header" style="width: 100px;">Specification</th>
   <th class="header">Fired when...</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{event("afterscriptexecute")}}</td>
   <td>{{domxref("Event")}}</td>
   <td><em>Mozilla Specific</em></td>
   <td>A script has been executed.</td>
  </tr>
  <tr>
   <td>{{event("beforescriptexecute")}}</td>
   <td>{{domxref("Event")}}</td>
   <td><em>Mozilla Specific</em></td>
   <td>A script is about to be executed.</td>
  </tr>
  <tr>
   <td>{{event("beforeinstallprompt")}}</td>
   <td>{{domxref("Event")}}</td>
   <td><em>Chrome specific</em></td>
   <td>A user is prompted to save a web site to a home screen on mobile.</td>
  </tr>
  <tr>
   <td>{{event("cardstatechange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The {{domxref("MozMobileConnection.cardState")}} property changes value.</td>
  </tr>
  <tr>
   <td>{{event("change")}}</td>
   <td>{{domxref("DeviceStorageChangeEvent")}}</td>
   <td><em>Firefox OS specific</em></td>
   <td>This event is triggered each time a file is created, modified or deleted on a given storage area.</td>
  </tr>
  <tr>
   <td>{{event("connectionInfoUpdate")}}</td>
   <td>&nbsp;</td>
   <td><a href="https://mxr.mozilla.org/mozilla-central/source/dom/wifi/nsIWifi.idl?rev=3e586802f478#176"><em>Firefox OS specific</em></a></td>
   <td>The informations about the signal strength and the link speed have been updated.</td>
  </tr>
  <tr>
   <td>{{event("cfstatechange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The call forwarding state changes.</td>
  </tr>
  <tr>
   <td>{{event("datachange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The {{domxref("MozMobileConnection.data")}} object changes values.</td>
  </tr>
  <tr>
   <td>{{event("dataerror")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The {{domxref("MozMobileConnection.data")}} object receive an error from the <abbr title="Radio Interface Layer">RIL</abbr>.</td>
  </tr>
  <tr>
   <td>{{event("DOMMouseScroll")}}{{deprecated_inline}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>The wheel button of a pointing device is rotated (detail attribute is a number of lines). (use {{event("wheel")}} instead)</td>
  </tr>
  <tr>
   <td><code>dragdrop</code> {{deprecated_inline}}</td>
   <td><code>DragEvent</code></td>
   <td><em>Mozilla specific</em></td>
   <td>An element is dropped (use {{event("drop")}} instead).</td>
  </tr>
  <tr>
   <td><code>dragexit</code> {{deprecated_inline}}</td>
   <td><code>DragEvent</code></td>
   <td><em>Mozilla specific</em></td>
   <td>A drag operation is being ended(use {{event("dragend")}} instead).</td>
  </tr>
  <tr>
   <td><code>draggesture</code> {{deprecated_inline}}</td>
   <td><code>DragEvent</code></td>
   <td><em>Mozilla specific</em></td>
   <td>The user starts dragging an element or text selection (use {{event("dragstart")}} instead).</td>
  </tr>
  <tr>
   <td>{{event("icccardlockerror")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>the {{domxref("MozMobileConnection.unlockCardLock()")}} or {{domxref("MozMobileConnection.setCardLock()")}} methods fails.</td>
  </tr>
  <tr>
   <td>{{event("iccinfochange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The {{domxref("MozMobileConnection.iccInfo")}} object changes.</td>
  </tr>
  <tr>
   <td>{{event("localized")}}</td>
   <td>&nbsp;</td>
   <td><em><a href="https://github.com/fabi1cazenave/webL10n">Mozilla Specific</a></em></td>
   <td>The page has been localized using data-l10n-* attributes.</td>
  </tr>
  <tr>
   <td>{{event("mousewheel")}}{{deprecated_inline}} {{notimplemented_inline}}</td>
   <td>&nbsp;</td>
   <td><a href="https://msdn.microsoft.com/en-us/library/ie/ms536951%28v=vs.85%29.aspx"><em>IE invented</em></a></td>
   <td>The wheel button of a pointing device is rotated.</td>
  </tr>
  <tr>
   <td>{{event("MozAudioAvailable")}}</td>
   <td>{{domxref("Event")}}</td>
   <td><em>Mozilla specific</em></td>
   <td>The audio buffer is full and the corresponding raw samples are available.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozBeforeResize"><code>MozBeforeResize</code></a> {{obsolete_inline}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>A window is about to be resized.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowseractivitydone")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when some activity has been completed (complete description TBD.)</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserasyncscroll")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the scroll position within a browser<code> </code>{{HTMLElement("iframe")}} changes.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowseraudioplaybackchange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when audio starts or stops playing within the browser {{HTMLElement("iframe")}} content.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsercaretstatechanged")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the text selected inside the browser {{HTMLElement("iframe")}} content changes.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserclose")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when window.close() is called within a browser {{HTMLElement("iframe")}}.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsercontextmenu")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when a browser {{HTMLElement("iframe")}} try to open a context menu.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserdocumentfirstpaint")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when a new paint occurs on any document in the browser {{HTMLElement("iframe")}}.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsererror")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when an error occured while trying to load a content within a browser iframe</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserfindchange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when a search operation is performed on the browser {{HTMLElement("iframe")}} content (see <a href="/en-US/docs/Web/API/HTMLIFrameElement#Search_methods">HTMLIFrameElement search methods</a>.)</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserfirstpaint")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the {{HTMLElement("iframe")}} paints content for the first time (this doesn't include the initial paint from <em>about:blank</em>.)</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsericonchange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the favicon of a browser iframe changes.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserlocationchange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when an browser iframe's location changes.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserloadend")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the browser iframe has finished loading all its assets.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserloadstart")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the browser iframe starts to load a new page.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsermanifestchange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when a the path to the app manifest changes, in the case of a browser {{HTMLElement("iframe")}} with an open web app embedded in it.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsermetachange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when a {{htmlelement("meta")}} elelment is added to, removed from or changed in the browser {{HTMLElement("iframe")}}'s content.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowseropensearch")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when a link to a search engine is found.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowseropentab")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when a new tab is opened within a browser {{HTMLElement("iframe")}} as a result of the user issuing a command to open a link target in a new tab (for example <kbd>ctrl</kbd>/<kbd>cmd</kbd> + click.)</td>
  </tr>
  <tr>
   <td>{{event("mozbrowseropenwindow")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when {{domxref("window.open()")}} is called within a browser iframe.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserresize")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the browser {{HTMLElement("iframe")}}'s window size has changed.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserscroll")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the browser {{HTMLElement("iframe")}} content scrolls.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserscrollareachanged")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the available scrolling area&nbsp; in the browser {{HTMLElement("iframe")}} changes. This can occur on resize and when the page size changes (while loading for example.)</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserscrollviewchange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when asynchronous scrolling (i.e. APCZ) starts or stops.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsersecuritychange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the SSL state changes within a browser iframe.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserselectionstatechanged")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the text selected inside the browser {{HTMLElement("iframe")}} content changes. Note that this is deprecated, and newer implementations use {{event("mozbrowsercaretstatechanged")}} instead.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsershowmodalprompt")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when {{domxref("window.alert","alert()")}}, {{domxref("window.confirm","confirm()")}} or {{domxref("window.prompt","prompt()")}} are called within a browser iframe</td>
  </tr>
  <tr>
   <td>{{event("mozbrowsertitlechange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the document.title changes within a browser iframe.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowserusernameandpasswordrequired")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when an HTTP authentification is requested.</td>
  </tr>
  <tr>
   <td>{{event("mozbrowservisibilitychange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS <a href="/en-US/docs/Web/API/Browser_API">Browser API</a>-specific</em></td>
   <td>Sent when the visibility state of the current browser iframe {{HTMLElement("iframe")}} changes, for example due to a call to {{domxref("HTMLIFrameElement.setVisible","setVisible()")}}.</td>
  </tr>
  <tr>
   <td>{{event("MozGamepadButtonDown")}}</td>
   <td>&nbsp;</td>
   <td><em>To be specified</em></td>
   <td>A gamepad button is pressed down.</td>
  </tr>
  <tr>
   <td>{{event("MozGamepadButtonUp")}}</td>
   <td>&nbsp;</td>
   <td><em>To be specified</em></td>
   <td>A gamepad button is released.</td>
  </tr>
  <tr>
   <td>{{event("MozMousePixelScroll")}} {{deprecated_inline}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>The wheel button of a pointing device is rotated (detail attribute is a number of pixels). (use wheel instead)</td>
  </tr>
  <tr>
   <td>{{event("MozOrientation")}} {{deprecated_inline}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>Fresh data is available from an orientation sensor (see deviceorientation).</td>
  </tr>
  <tr>
   <td>{{event("MozScrolledAreaChanged")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td><em>Mozilla specific</em></td>
   <td>The document view has been scrolled or resized.</td>
  </tr>
  <tr>
   <td>{{event("moztimechange")}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>The time of the device has been changed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/DOM/Touch_events_(Mozilla_experimental)">MozTouchDown</a> {{deprecated_inline}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>A touch point is placed on the touch surface (use touchstart instead).</td>
  </tr>
  <tr>
   <td><a href="/en-US/DOM/Touch_events_(Mozilla_experimental)">MozTouchMove</a> {{deprecated_inline}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>A touch point is moved along the touch surface (use touchmove instead).</td>
  </tr>
  <tr>
   <td><a href="/en-US/DOM/Touch_events_(Mozilla_experimental)">MozTouchUp</a> {{deprecated_inline}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>A touch point is removed from the touch surface (use touchend instead).</td>
  </tr>
  <tr>
   <td>{{event("alerting")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>The correspondent is being alerted (his/her phone is ringing).</td>
  </tr>
  <tr>
   <td>{{event("busy")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>The line of the correspondent is busy.</td>
  </tr>
  <tr>
   <td>{{event("callschanged")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call has been added or removed from the list of current calls.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/DOM/onconnected">onconnected</a> {{event("connected")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call has been connected.</td>
  </tr>
  <tr>
   <td>{{event("connecting")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call is about to connect.</td>
  </tr>
  <tr>
   <td>{{event("delivered")}}</td>
   <td>{{domxref("SMSEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>An SMS has been successfully delivered.</td>
  </tr>
  <tr>
   <td>{{event("dialing")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>The number of a correspondent has been dialed.</td>
  </tr>
  <tr>
   <td>{{event("disabled")}}</td>
   <td>&nbsp;</td>
   <td><a href="https://mxr.mozilla.org/mozilla-central/source/dom/wifi/nsIWifi.idl?rev=3e586802f478#182"><em>Firefox OS specific</em></a></td>
   <td>Wifi has been disabled on the device.</td>
  </tr>
  <tr>
   <td>{{event("disconnected")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call has been disconnected.</td>
  </tr>
  <tr>
   <td>{{event("disconnecting")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call is about to disconnect.</td>
  </tr>
  <tr>
   <td>{{event("enabled")}}</td>
   <td>&nbsp;</td>
   <td><a href="https://mxr.mozilla.org/mozilla-central/source/dom/wifi/nsIWifi.idl?rev=3e586802f478#182"><em>Firefox OS specific</em></a></td>
   <td>Wifi has been enabled on the device.</td>
  </tr>
  <tr>
   <td>{{event("error_(Telephony)","error")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>An error occurred.</td>
  </tr>
  <tr>
   <td>{{event("held")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call has been held.</td>
  </tr>
  <tr>
   <td>{{event("holding")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call is about to be held.</td>
  </tr>
  <tr>
   <td>{{event("incoming")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call is being received.</td>
  </tr>
  <tr>
   <td>{{event("received")}}</td>
   <td>{{domxref("SMSEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>An SMS has been received.</td>
  </tr>
  <tr>
   <td>{{event("resuming")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>A call is about to resume.</td>
  </tr>
  <tr>
   <td>{{event("sent")}}</td>
   <td>{{domxref("SMSEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>An SMS has been sent.</td>
  </tr>
  <tr>
   <td>{{event("statechange")}}</td>
   <td>{{domxref("CallEvent")}}</td>
   <td><em>To be specified</em></td>
   <td>The state of a call has changed.</td>
  </tr>
  <tr>
   <td>{{event("statuschange")}}</td>
   <td>&nbsp;</td>
   <td><a href="https://mxr.mozilla.org/mozilla-central/source/dom/wifi/nsIWifi.idl?rev=3e586802f478#156"><em>Firefox OS specific</em></a></td>
   <td>The status of the Wifi connection changed.</td>
  </tr>
  <tr>
   <td>{{event("overflow")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td><em>Mozilla specific</em></td>
   <td>An element has been overflowed by its content or has been rendered for the first time in this state (only works for elements styled with <code>overflow</code> != <code>visible</code>).</td>
  </tr>
  <tr>
   <td>{{event("smartcard-insert")}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>A <a href="/en-US/docs/JavaScript_crypto">smartcard</a> has been inserted.</td>
  </tr>
  <tr>
   <td>{{event("smartcard-remove")}}</td>
   <td>&nbsp;</td>
   <td><em>Mozilla specific</em></td>
   <td>A <a href="/en-US/docs/JavaScript_crypto">smartcard</a> has been removed.</td>
  </tr>
  <tr>
   <td>{{event("stkcommand")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The <abbr title="SIM Application Toolkit">STK</abbr> Proactive Command is issued from <abbr title="Integrated Circuit Card">ICC</abbr>.</td>
  </tr>
  <tr>
   <td>{{event("stksessionend")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The <abbr title="SIM Application Toolkit">STK</abbr> Session is terminated by <abbr title="Integrated Circuit Card">ICC</abbr>.</td>
  </tr>
  <tr>
   <td><code>text</code></td>
   <td>&nbsp;</td>
   <td><em>Mozilla Specific</em></td>
   <td>A generic composition event occurred.</td>
  </tr>
  <tr>
   <td>{{event("touchenter")}}</td>
   <td>{{domxref("TouchEvent")}}</td>
   <td><a href="https://www.w3.org/TR/touch-events/#the-touchstart---------event">Touch Events</a>&nbsp;{{removed_inline}}</td>
   <td>&nbsp;</td>
  </tr>
  <tr>
   <td>{{event("touchleave")}}</td>
   <td>{{domxref("TouchEvent")}}</td>
   <td><a href="https://www.w3.org/TR/touch-events/#the-touchstart---------event">Touch Events</a>&nbsp;{{removed_inline}}</td>
   <td>&nbsp;</td>
  </tr>
  <tr>
   <td>{{event("underflow")}}</td>
   <td>{{domxref("UIEvent")}}</td>
   <td><em>Mozilla specific</em></td>
   <td>An element is no longer overflowed by its content (only works for elements styled with <code>overflow</code> != <code>visible</code>).</td>
  </tr>
  <tr>
   <td><code>uploadprogress</code> {{deprecated_inline}}</td>
   <td>{{domxref("ProgressEvent")}}</td>
   <td><em>Mozilla Specific</em></td>
   <td>Upload is in progress (see {{event("progress")}}).</td>
  </tr>
  <tr>
   <td>
    <p>{{event("ussdreceived")}}</p>
   </td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>A new <abbr title="Unstructured Supplementary Service Data">USSD</abbr> message is received</td>
  </tr>
  <tr>
   <td>{{event("voicechange")}}</td>
   <td>&nbsp;</td>
   <td><em>Firefox OS specific</em></td>
   <td>The {{domxref("MozMobileConnection.voice")}} object changes values.</td>
  </tr>
 </tbody>
</table>

<h2 id="Mozilla-specific_events">Mozilla-specific events</h2>

<div class="note">
<p><strong>Note:</strong> those events are never exposed to web content and can only be used in chrome content context.</p>
</div>

<h3 id="XUL_events">XUL events</h3>

<table class="standard-table" style="height:554px; width:1033px">
 <tbody>
  <tr>
   <th class="header" style="width: 220px;">Event Name</th>
   <th class="header" style="width: 90px;">Event Type</th>
   <th class="header" style="width: 100px;">Specification</th>
   <th class="header">Fired when...</th>
  </tr>
  <tr>
   <td>{{event("broadcast")}}</td>
   <td>&nbsp;</td>
   <td><a href="/en-US/docs/XUL/Tutorial/Broadcasters_and_Observers#Broadcast_event">XUL</a></td>
   <td>An <code>observer</code> noticed a change to the attributes of a watched broadcaster.</td>
  </tr>
  <tr>
   <td>{{event("CheckboxStateChange")}}</td>
   <td>&nbsp;</td>
   <td>XUL</td>
   <td>The state of a <code>checkbox</code> has been changed either by a user action or by a script (useful for accessibility).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/close_event">close</a></td>
   <td>&nbsp;</td>
   <td>XUL</td>
   <td>The close button of the window has been clicked.</td>
  </tr>
  <tr>
   <td>{{event("command")}}</td>
   <td>&nbsp;</td>
   <td>XUL</td>
   <td>An element has been activated.</td>
  </tr>
  <tr>
   <td>{{event("commandupdate")}}</td>
   <td>&nbsp;</td>
   <td>XUL</td>
   <td>A command update occurred on a <code>commandset</code> element.</td>
  </tr>
  <tr>
   <td>{{event("DOMMenuItemActive")}}</td>
   <td>&nbsp;</td>
   <td>XUL</td>
   <td>A menu or menuitem has been hovered or highlighted.</td>
  </tr>
  <tr>
   <td>{{event("DOMMenuItemInactive")}}</td>
   <td>&nbsp;</td>
   <td><em>XUL</em></td>
   <td>A menu or menuitem is no longer hovered or highlighted.</td>
  </tr>
  <tr>
   <td>{{event("popuphidden")}}</td>
   <td><code>PopupEvent</code></td>
   <td><a href="/en-US/docs/XUL/PopupGuide/PopupEvents"><em>XUL</em></a></td>
   <td>A menupopup, panel or tooltip has been hidden.</td>
  </tr>
  <tr>
   <td>{{event("popuphiding")}}</td>
   <td><code>PopupEvent</code></td>
   <td><a href="/en-US/docs/XUL/PopupGuide/PopupEvents"><em>XUL</em></a></td>
   <td>A menupopup, panel or tooltip is about to be hidden.</td>
  </tr>
  <tr>
   <td>{{event("popupshowing")}}</td>
   <td><code>PopupEvent</code></td>
   <td><a href="/en-US/docs/XUL/PopupGuide/PopupEvents"><em>XUL</em></a></td>
   <td>A menupopup, panel or tooltip is about to become visible.</td>
  </tr>
  <tr>
   <td>{{event("popupshown")}}</td>
   <td><code>PopupEvent</code></td>
   <td><a href="/en-US/docs/XUL/PopupGuide/PopupEvents"><em>XUL</em></a></td>
   <td>A menupopup, panel or tooltip has become visible.</td>
  </tr>
  <tr>
   <td>{{event("RadioStateChange")}}</td>
   <td>&nbsp;</td>
   <td>XUL</td>
   <td>The state of a <code>radio</code> has been changed either by a user action or by a script (useful for accessibility).</td>
  </tr>
  <tr>
   <td>{{event("ValueChange")}}</td>
   <td>&nbsp;</td>
   <td>XUL</td>
   <td>The value of an element has changed (a progress bar for example, useful for accessibility).</td>
  </tr>
 </tbody>
</table>

<h3 id="Add-on-specific_events">Add-on-specific events</h3>

<table class="standard-table" style="width:100%">
 <tbody>
  <tr>
   <th class="header" style="width: 220px;">Event Name</th>
   <th class="header" style="width: 90px;">Event Type</th>
   <th class="header" style="width: 100px;">Specification</th>
   <th class="header">Fired when...</th>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozSwipeGesture">MozSwipeGesture</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A touch point is swiped across the touch surface</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozMagnifyGestureStart">MozMagnifyGestureStart</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Two touch points start to move away from each other.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozMagnifyGestureUpdate">MozMagnifyGestureUpdate</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Two touch points move away from each other (after a MozMagnifyGestureStart).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozMagnifyGesture">MozMagnifyGesture</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Two touch points moved away from each other (after a sequence of MozMagnifyGestureUpdate).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozRotateGestureStart">MozRotateGestureStart</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Two touch points start to rotate around a point.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozRotateGestureUpdate">MozRotateGestureUpdate</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Two touch points rotate around a point (after a MozRotateGestureStart).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozRotateGesture">MozRotateGesture</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Two touch points rotate around a point (after a sequence of MozRotateGestureUpdate).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozTapGesture">MozTapGesture</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Two touch points are tapped on the touch surface.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozPressTapGesture">MozPressTapGesture</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A "press-tap" gesture happened on the touch surface (first finger down, second finger down, second finger up, first finger up).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozEdgeUIGesture">MozEdgeUIGesture</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A touch point is swiped across the touch surface to invoke the edge UI (Win8 only).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozAfterPaint">MozAfterPaint</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Content has been repainted.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMPopupBlocked">DOMPopupBlocked</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A popup has been blocked</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMWindowCreated">DOMWindowCreated</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A window has been created.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMWindowClose">DOMWindowClose</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A window is about to be closed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMTitleChanged">DOMTitleChanged</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specifc</em></td>
   <td>The title of a window has changed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMLinkAdded">DOMLinkAdded</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specifc</em></td>
   <td>A link has been added a document.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMLinkRemoved">DOMLinkRemoved</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specifc</em></td>
   <td>A link has been removed inside from a document.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMMetaAdded">DOMMetaAdded</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A <code>meta</code> element has been added to a document.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMMetaRemoved">DOMMetaRemoved</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A <code>meta</code> element has been removed from a document.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMWillOpenModalDialog">DOMWillOpenModalDialog</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A modal dialog is about to open.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMModalDialogClosed">DOMModalDialogClosed</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A modal dialog has been closed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMAutoComplete">DOMAutoComplete</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>The content of an element has been auto-completed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/DOMFrameContentLoaded">DOMFrameContentLoaded</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>The frame has finished loading (but not its dependent resources).</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/AlertActive">AlertActive</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A <code><a href="/en-US/docs/XUL/notification">notification</a></code> element is shown.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/AlertClose">AlertClose</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A <code><a href="/en-US/docs/XUL/notification">notification</a></code> element is closed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/fullscreen">fullscreen</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Browser fullscreen mode has been entered or left.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/sizemodechange">sizemodechange</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>Window has entered/left fullscreen mode, or has been minimized/unminimized.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/MozEnteredDomFullscreen">MozEnteredDomFullscreen</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td><a href="/en-US/docs/DOM/Using_full-screen_mode">DOM fullscreen</a> mode has been entered.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/SSWindowClosing">SSWindowClosing</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>The session store will stop tracking this window.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/SSTabClosing">SSTabClosing</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>The session store will stop tracking this tab.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/SSTabRestoring">SSTabRestoring</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab is about to be restored.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/SSTabRestored">SSTabRestored</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been restored.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/SSWindowStateReady">SSWindowStateReady</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A window state has switched to "ready".</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/SSWindowStateBusy">SSWindowStateBusy</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A window state has switched to "busy".</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/TabOpen">TabOpen</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been opened.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/TabClose">TabClose</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been closed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/TabSelect">TabSelect</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been selected.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/TabShow">TabShow</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been shown.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/TabHide">TabHide</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been hidden.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/TabPinned">TabPinned</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been pinned.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/TabUnpinned">TabUnpinned</a></td>
   <td>&nbsp;</td>
   <td><em>Addons specific</em></td>
   <td>A tab has been unpinned.</td>
  </tr>
 </tbody>
</table>

<h3 id="Developer_tool-specific_events">Developer tool-specific events</h3>

<table class="standard-table" style="width:100%">
 <tbody>
  <tr>
   <th class="header" style="width: 220px;">Event Name</th>
   <th class="header" style="width: 90px;">Event Type</th>
   <th class="header" style="width: 100px;">Specification</th>
   <th class="header">Fired when...</th>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/CssRuleViewRefreshed">CssRuleViewRefreshed</a></td>
   <td>&nbsp;</td>
   <td><em>devtools specific</em></td>
   <td>The "Rules" view of the style inspector has been updated.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/CssRuleViewChanged">CssRuleViewChanged</a></td>
   <td>&nbsp;</td>
   <td><em>devtools specific</em></td>
   <td>The "Rules" view of the style inspector has been changed.</td>
  </tr>
  <tr>
   <td><a href="/en-US/docs/Web/Reference/Events/CssRuleViewCSSLinkClicked">CssRuleViewCSSLinkClicked</a></td>
   <td>&nbsp;</td>
   <td><em>devtools specific</em></td>
   <td>A link to a CSS file has been clicked in the "Rules" view of the style inspector.</td>
  </tr>
 </tbody>
</table>

<h2 id="See_also">See also</h2>

<ul>
 <li>{{domxref("Event")}}</li>
 <li><a href="/en-US/docs/Web/Guide/DOM/Events">Event developer guide</a></li>
</ul>
Revert to this revision