--- title: Referência de Eventos slug: Web/Events tags: - eventos translation_of: Web/Events original_slug: Web/Eventos ---

Eventos DOM são enviados para notificar o código de coisas interessantes que ocorreram. Cada evento é representado por um objeto que é baseado na interface {{domxref ('Evento')}}, e poderá ter campos e/ou funções personalizadas adicionais utilizadas para obter informação adicional sobre o que aconteceu. Os eventos podem representar tudo, desde interações básicas do utilizador até notificações automáticas de coisas a acontecer no modelo de renderização. .

Este artigo oferece uma lista de eventos que podem ser enviados; alguns são eventos padrão definidos nas especificações oficiais, enquanto outros são eventos utilizadosinternamente pelos navegadores específicos; por exemplo, os eventos específicos da Mozilla são listados para que os extras possam utilizá-los para interagir com o navegador.

Categorias Mais Comuns

Eventos de Recurso
Nome do Evento Executado quando
{{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.
Eventos de Rede
Nome do Evento Executado quando
{{event("online")}} The browser has gained access to the network.
{{event("offline")}} The browser has lost access to the network.
Eventos de Foco
Nome do Evento Executado quando
{{event("focus")}} An element has received focus (does not bubble).
{{event("blur")}} An element has lost focus (does not bubble).
Eventos de Websocket
Nome do Evento Executado quando
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.
Eventos do Histórico de Sessão
Nome do Evento Executado quando
{{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).
Eventos de Animação de CSS
Nome do Evento Executado quando
{{event("animationstart")}} A CSS animation has started.
{{event("animationend")}} A CSS animation has completed.
{{event("animationiteration")}} A CSS animation is repeated.
Eventos de Transição de CSS
Nome do Evento Executado quando
{{event("transitionstart")}} A CSS transition has actually started (fired after any delay).
{{event("transitioncancel")}} A CSS transition has been cancelled.
{{event("transitionend")}} A CSS transition has completed.
{{event("transitionrun")}} A CSS transition has began running (fired before any delay starts).
Eventos de Formulário
Nome do Evento Executado quando
{{event("reset")}} The reset button is pressed
{{event("submit")}} The submit button is pressed
Eventos de Impressão
Nome do Evento Executado quando
{{event("beforeprint")}} The print dialog is opened
{{event("afterprint")}} The print dialog is closed
Eventos de Composição de Texto
Nome do Evento Executado quando
{{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.
Eventos de Visualização
Nome do Evento Executado quando
{{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.
Eventos de Área de Transferência
Nome do Evento Executado quando
{{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
Eventos de Teclado
Nome do Evento Executado quando
{{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
Eventos de Rato
Nome do Evento Executado quando
{{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 is pressed on an element.
{{event("mouseup")}} A pointing device button is released over an element.
{{event("auxclick")}} A pointing device button (ANY non-primary button) has been pressed and released on an element.
{{event("click")}} A pointing device button (ANY button; soon to be primary button only) 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.
Eventos de 'Arrastar e Largar'
Nome do Evento Executado quando
{{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.
Eventos de Média
Nome do Evento Executado quando
{{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 browser 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 browser estimates it can play the media up to its end without stopping for content buffering.
{{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("audioprocess")}} The input buffer of a {{domxref("ScriptProcessorNode")}} is ready to be processed.
Eventos de Progresso
Nome do Evento Executado quando
{{event("loadstart")}} Progresso começou.
{{event("progress")}} Em progresso.
{{event("error")}} Progresso falhou.
{{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).

Eventos de armazenamento

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

Eventos de atualização

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

Eventos de alteração de valor

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

Eventos não categorizados

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

Eventos menos comuns e não padrão

Eventos de Abortable Fetch

Nome do Evento Executado quando
{{event("abort_(dom_abort_api)", "abort")}} A DOM request is aborted, i.e. using {{domxref("AbortController.abort()")}}.

Eventos de WebVR

Nome do Evento Executado quando
{{event("vrdisplayconnect")}} when a compatible {{domxref("VRDisplay")}} is connected to the computer.
{{event("vrdisplaydisconnect")}} When a compatible {{domxref("VRDisplay")}} is disconnected from the computer.
{{event("vrdisplayactivate")}} When a VR display is able to be presented to, for example if an HMD has been moved to bring it out of standby, or woken up by being put on.
{{event("vrdisplaydeactivate")}} When a {{domxref("VRDisplay")}} can no longer be presented to, for example if an HMD has gone into standby or sleep mode due to a period of inactivity.
{{event("vrdisplayblur")}} when presentation to a {{domxref("VRDisplay")}} has been paused for some reason by the browser, OS, or VR hardware — for example, while the user is interacting with a system menu or browser, to prevent tracking or loss of experience.
{{event("vrdisplayfocus")}} When presentation to a {{domxref("VRDisplay")}} has resumed after being blurred.
{{event("vrdisplaypresentchange")}} The presenting state of a {{domxref("VRDisplay")}} changes — i.e. goes from presenting to not presenting, or vice versa.

Eventos de SVG

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

Eventos de base de dados

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

Eventos de notificação

AlertActive
AlertClose

Eventos de CSS

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

eventos de script

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

eventos de menu

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

Eventos de janela

DOMWindowCreated
DOMTitleChanged
DOMWindowClose
SSWindowClosing
SSWindowStateReady
SSWindowStateBusy
close

Eventos de documento

DOMLinkAdded
DOMLinkRemoved
DOMMetaAdded
DOMMetaRemoved
DOMWillOpenModalDialog
DOMModalDialogClosed

Eventos de janela (Popup)

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

Eventos de separador

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

Eventos de bateria

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

Eventos de chamada

{{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")}}

Eventos de sensor

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

Eventos de Smartcard

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

Eventos de SMS e USSD

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

Eventos de frame

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

Eventos de mutação de DOM

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

Eventos de toque

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")}}

Eventos de pointer

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

Eventos padrão

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.

Nome do Evento Tipo de Evento Especificação Executado quando...
{{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")}} {{experimental_inline}} CSS Animations A CSS animation has completed.
{{event("animationiteration")}} {{domxref("AnimationEvent")}} {{experimental_inline}} CSS Animations A CSS animation is repeated.
{{event("animationstart")}} {{domxref("AnimationEvent")}} {{experimental_inline}} CSS Animations A CSS animation has started.
{{event("appinstalled")}} {{domxref("Event")}} Web App Manifest A web application is successfully installed as a progressive web app.
{{event("audioprocess")}} {{domxref("AudioProcessingEvent")}} {{deprecated_inline}} {{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")}} {{experimental_inline}} 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")}} {{deprecated_inline}} {{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")}} {{experimental_inline}} Clipboard The text selection has been added to the clipboard.
{{event("cut")}} {{domxref("ClipboardEvent")}} {{experimental_inline}} 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")}} {{experimental_inline}} Ambient Light Events Fresh data is available from a light sensor.
{{event("devicemotion")}} {{domxref("DeviceMotionEvent")}} {{experimental_inline}} Device Orientation Events Fresh data is available from a motion sensor.
{{event("deviceorientation")}} {{domxref("DeviceOrientationEvent")}} {{experimental_inline}} Device Orientation Events Fresh data is available from an orientation sensor.
{{event("deviceproximity")}} {{domxref("DeviceProximityEvent")}} {{experimental_inline}} 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 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 The name of an element changed (use mutation observers instead).
DOMFocusIn {{deprecated_inline}} {{domxref("FocusEvent")}} {{experimental_inline}} DOM L3 An element has received focus (use {{event("focus")}} or {{event("focusin")}} instead).
DOMFocusOut {{deprecated_inline}} {{domxref("FocusEvent")}} {{experimental_inline}} 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 Progresso falhou.
{{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")}} {{experimental_inline}} DOM L3 An element has received focus (does not bubble).
{{event("focusin")}} {{domxref("FocusEvent")}} {{experimental_inline}} DOM L3 An element is about to receive focus (bubbles).
{{event("focusout")}} {{domxref("FocusEvent")}} {{experimental_inline}} 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")}} {{experimental_inline}} Gamepad A gamepad has been connected.
{{event("gamepaddisconnected")}} {{domxref("GamepadEvent")}} {{experimental_inline}} 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 Progresso começou.
{{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("messageerror")}} {{domxref("MessageEvent")}} {{domxref("MessagePort")}}, Web Workers, Broadcast Channel, {{domxref("Window")}} A message error is raised when a message is received by an object.
{{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")}} {{experimental_inline}} {{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")}} {{experimental_inline}} 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 Em progresso.
progress {{domxref("ProgressEvent")}} Offline The user agent is downloading resources listed by the manifest.
{{event("push")}} {{domxref("PushEvent")}} {{experimental_inline}} {{SpecName("Push API")}} A Service Worker has received a push message.
{{event("pushsubscriptionchange")}} {{domxref("PushEvent")}} {{experimental_inline}} {{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")}} {{experimental_inline}} {{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")}} {{experimental_inline}} {{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")}} {{experimental_inline}} 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")}} {{experimental_inline}} {{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("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.

Eventos não padrão

Nome do Evento Tipo de Evento Especificação Executado quando...
{{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}}   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 Uma janela está prestes a ser redimensionada.
{{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  
{{event("touchleave")}} {{domxref("TouchEvent")}} Touch Events Removed  
{{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.

Eventos específicos da Mozilla

Nota: esses eventos nunca são expostos ao conteúdo da Web e só podem ser utilizados no contexto de conteúdo do Chrome.

Eventos de XUL

Nome do Evento Tipo de Evento Especificação Executado quando...
{{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).

Enventos específicos de extras

Nome do Evento Tipo de Evento Especificação Executado quando...
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.

Eventos específicos da ferramenta do programador

Nome do Evento Tipo de Evento Especificação Executado quando...
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.

Consulte também