From 9ab8fb23335702c06198637355cd4820ddf37bde Mon Sep 17 00:00:00 2001 From: tristantheb Date: Sun, 14 Mar 2021 10:53:44 +0100 Subject: Translate 'Events index page' - Issue : #105 (#156) * Translate 'Events index page' - Issue : #105 * FIX: Some typo has been changed --- files/fr/web/events/index.html | 2964 ++++++++++++++-------------------------- 1 file changed, 1001 insertions(+), 1963 deletions(-) (limited to 'files/fr/web') diff --git a/files/fr/web/events/index.html b/files/fr/web/events/index.html index 639201c6ed..30dbf14f75 100644 --- a/files/fr/web/events/index.html +++ b/files/fr/web/events/index.html @@ -2,1975 +2,1013 @@ title: Référence des événements slug: Web/Events tags: - - NeedsTranslation + - Evénement + - Aperçu + - Référence translation_of: Web/Events --- -

Les événements DOM sont notifiés au code source lorsque quelque chose d'intéressant se passe. Chaque événement est représenté par un objet implémentant l'interface {{domxref("Event")}}, et peut avoir d'autres propriétés et/ou champs, permettant d'obtenir des informations supplémentaires au sujet de ce qui s'est produit. Les événements peuvent décrire de simples interactions avec l'utilisateur jusqu'à des notifications automatisées d'événements se produisant au niveau du modèle de rendu.

+

Les événements DOM sont déclenchés pour notifier au code des « changements intéressants » qui peuvent affecter l'exécution du code. Ces changements peuvent résulter d'interactions avec l'utilisateur, comme l'utilisation de la souris ou le redimensionnement d'une fenêtre, de changements dans l'état de l'environnement sous-jacent (par exemple, une batterie faible ou des événements médiatiques provenant du système d'exploitation), et d'autres causes.

-

Cet article présente une liste d'événements pouvant être notifiés ; certains correspondent à des événements standards définis dans les spécifications officielles, tandis que d'autres sont des événements utilisés en interne par certains navigateurs ; par exemple, les événements propres à Mozilla sont listés pour que les add-ons puissent interagir avec le navigateur.

+

Chaque événement est représenté par un objet implémentant l'interface {{domxref("Event")}}, et peut avoir d'autres propriétés et/ou champs, permettant d'obtenir des informations supplémentaires au sujet de ce qui s'est produit. La documentation de chaque événement comporte un tableau (en haut de la page) qui comprend un lien vers l'interface de l'événement associé et d'autres informations pertinentes. Une liste complète des différents types d'événements est donnée dans Event > Interfaces basées sur Event.

-

Événements standards

+

Cette rubrique fournit un index des principales sortes d'événements qui peuvent vous intéresser (animation, presse-papiers, workers, etc.) ainsi que les principales classes qui implémentent ces sortes d'événements. À la fin se trouve une liste exhaustive de tous les événements documentés.

-

Ces événements sont définis dans les spécifications officielles du web, et devraient donc être communs à tous les navigateurs. À chaque événement est associée l'interface implémentée par l'objet envoyé aux destinataires de l'événement (afin de pouvoir connaître les données fournies avec chaque événement), ainsi qu'un lien vers la ou les spécification(s) définissant l'événement.

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nom de l'événementType de l'événementSpécificationDéclenché lorsque...
{{event("abort")}}{{domxref("UIEvent")}}DOM L3Le chargement d'une ressource a été interrompu.
abort{{domxref("ProgressEvent")}}Progress et XMLHttpRequestLa progression a été interrompue (pas dû à une erreur).
abort{{domxref("Event")}}IndexedDBUne transaction a été interrompue.
{{event("afterprint")}}{{gecko_minversion_inline("6")}}{{domxref("Event")}}HTML5Le document associé a commencé à être imprimé ou l'aperçu avant impression a été fermé.
{{event("animationend")}}{{domxref("AnimationEvent")}}CSS AnimationsUne animation CSS s'est achevée.
{{event("animationiteration")}}{{domxref("AnimationEvent")}}CSS AnimationsUne animation CSS est répétée.
{{event("animationstart")}}{{domxref("AnimationEvent")}}CSS AnimationsUne animation CSS a débuté.
{{event("audioprocess")}}{{domxref("AudioProcessingEvent")}}{{SpecName('Web Audio API', '#AudioProcessingEvent', 'audioprocess')}}La mémoire tampon d'entrée d'un {{domxref("ScriptProcessorNode")}} est prête à être lue.
{{event("beforeprint")}} {{gecko_minversion_inline("6")}}{{domxref("Event")}}HTML5Le document associé est sur le point d'être imprimé ou visualisé dans l'aperçu avant impression.
{{event("beforeunload")}}{{domxref("BeforeUnloadEvent")}}HTML5
{{event("beginEvent")}}{{domxref("TimeEvent")}}SVGUne animation SMIL débute.
blockedIndexedDBUne connexion ouverte vers la base de données bloque une transaction versionchange (changement de version) sur la même base de données.
{{event("blur")}}{{domxref("FocusEvent")}}DOM L3Un élément perd le focus (ne se propage pas).
{{event("cached")}}{{domxref("Event")}}OfflineLes ressources listées dans le manifeste ont été téléchargées, et l'application est désormais mise en cache.
{{event("canplay")}}{{domxref("Event")}}HTML5 mediaLe user agent peut lire le média, mais estime que trop peu de données ont été chargées pour lire le média jusqu'au bout sans avoir à s'arrêter pour mettre en mémoire tampon la suite du contenu.
{{event("canplaythrough")}}{{domxref("Event")}}HTML5 mediaLe user agent peut lire le média, et estime que suffisamment de données ont été chargées pour lire le média jusqu'au bout sans avoir à s'arrêter pour mettre en mémoire tampon la suite du contenu.
{{event("change")}}{{domxref("Event")}}DOM L2, HTML5Un élément perd le focus et sa valeur a changé depuis l'acquisition du focus.
{{event("chargingchange")}}{{domxref("Event")}}Battery statusLa batterie commence ou finit de charger.
{{event("chargingtimechange")}}{{domxref("Event")}}Battery statusL'attribut chargingTime (temps de chargement) a été mis à jour.
{{event("checking")}}{{domxref("Event")}}OfflineLe user agent vérifie l'existence d'une mise à jour, ou tente de télécharger le manifeste du cache pour la première fois.
{{event("click")}}{{domxref("MouseEvent")}}DOM L3Un bouton d'un dispositif de pointage a été appuyé ou relaché sur un élément.
close{{domxref("Event")}}WebSocketUne connexion WebSocket a été fermée.
{{event("compassneedscalibration")}}{{domxref("SensorEvent")}}OrientationLa boussole permettant d'obtenir les données d'orientation doit être calibrée.
completeIndexedDB
{{event("complete")}}{{domxref("OfflineAudioCompletionEvent")}}{{SpecName('Web Audio API', '#OfflineAudioCompletionEvent-section', 'OfflineAudioCompletionEvent')}}Le rendu d'un {{domxref("OfflineAudioContext")}} est terminé.
{{event("compositionend")}}{{gecko_minversion_inline("9")}}{{domxref("CompositionEvent")}}DOM L3La composition d'un passage de texte a été achevée ou annulée.
{{event("compositionstart")}}{{gecko_minversion_inline("9")}}{{domxref("CompositionEvent")}}DOM L3La composition d'un passage de texte est prête (équivalent à l'événement keydown pour un clavier, mais fonctionne avec d'autres entrées comme la reconnaissance vocale).
{{event("compositionupdate")}}{{gecko_minversion_inline("9")}}{{domxref("CompositionEvent")}}DOM L3Un caractère est ajouté à un passage de texte en cours de composition.
{{event("contextmenu")}}{{domxref("MouseEvent")}}HTML5Le bouton droit de la souris est cliqué (avant l'affichage du menu contextuel).
{{event("copy")}}{{domxref("ClipboardEvent")}}ClipboardLa sélection de texte a été ajoutée au presse-papiers.
{{event("cut")}}{{domxref("ClipboardEvent")}}ClipboardLa sélection de texte a été enlevée du document et ajoutée au presse-papiers.
{{event("dblclick")}}{{domxref("MouseEvent")}}DOM L3Un bouton d'un dispositif de pointage a été double-cliqué sur un élément.
{{event("devicelight")}}{{domxref("DeviceLightEvent")}}Ambient Light EventsLe capteur de lumière a de nouvelles données disponibles.
{{event("devicemotion")}}{{domxref("DeviceMotionEvent")}}Device Orientation EventsLe capteur de mouvement a de nouvelles données disponibles.
{{event("deviceorientation")}}{{domxref("DeviceOrientationEvent")}}Device Orientation EventsLe capteur d'orientation a de nouvelles données disponibles.
{{event("deviceproximity")}}{{domxref("DeviceProximityEvent")}}Proximity EventsLe capteur de proximité a de nouvelles données disponibles (indique une distance approximative entre l'appareil et un object avoisinant).
{{event("dischargingtimechange")}}{{domxref("Event")}}Battery statusL'attribut dischargingTime (temps de décharge) a été mis à jour.
DOMActivate {{deprecated_inline}}{{domxref("UIEvent")}}DOM L3Un bouton, un lien ou un élément à changement d'état est activé (utiliser plutôt {{event("click")}}).
DOMAttributeNameChanged {{deprecated_inline}}{{domxref("MutationNameEvent")}}DOM L3 RemovedLe nom d'un attribut a changé (utiliser plutôt les observateurs de mutation).
DOMAttrModified {{deprecated_inline}}{{domxref("MutationEvent")}}DOM L3La valeur d'un attribut a été modifiée (utiliser plutôt les observateurs de mutation).
DOMCharacterDataModified {{deprecated_inline}}{{domxref("MutationEvent")}}DOM L3Un texte - ou autres Données caractère - a été changé (utiliser plutôt les observateurs de mutation).
{{event("DOMContentLoaded")}}{{domxref("Event")}}HTML5Le document a fini de charger (mais pas les ressources qui en dépendent).
DOMElementNameChanged {{deprecated_inline}}{{domxref("MutationNameEvent")}}DOM L3 RemovedLe nom d'un élément a changé (utiliser plutôt les observateurs de mutation).
DOMFocusIn {{deprecated_inline}}{{domxref("FocusEvent")}}DOM L3Un élément a acquis le focus (utiliser plutôt {{event("focus")}} ou {{event("focusin")}}).
DOMFocusOut {{deprecated_inline}}{{domxref("FocusEvent")}}DOM L3Un élément a perdu le focus (utiliser plutôt {{event("blur")}} ou {{event("focusout")}}).
DOMNodeInserted {{deprecated_inline}}{{domxref("MutationEvent")}}DOM L3Un nœud a été ajouté comme enfant d'un autre nœud (utiliser plutôt les observateurs de mutation).
DOMNodeInsertedIntoDocument {{deprecated_inline}}{{domxref("MutationEvent")}}DOM L3Un nœud a été ajouté au document (utiliser plutôt les observateurs de mutation).
DOMNodeRemoved {{deprecated_inline}}{{domxref("MutationEvent")}}DOM L3Un nœud a été retiré de son nœud parent (utiliser plutôt les observateurs de mutation).
DOMNodeRemovedFromDocument {{deprecated_inline}}{{domxref("MutationEvent")}}DOM L3Un nœud a été retiré du document (utiliser plutôt les observateurs de mutation).
DOMSubtreeModified {{deprecated_inline}}{{domxref("MutationEvent")}}DOM L3Un changement a eu lieu dans le document (utiliser plutôt les observateurs de mutation).
{{event("downloading")}}{{domxref("Event")}}OfflineLe user agent a trouvé une mise à jour et la récupère, ou il télécharge les ressources listées dans le manifeste du cache pour la première fois.
{{event("drag")}}{{domxref("DragEvent")}}HTML5Un élément ou la sélection de texte est glissé (toutes les 350ms).
{{event("dragend")}}{{domxref("DragEvent")}}HTML5Un glisser-déposer a été achevé (en relâchant le bouton de la souris ou en appuyant sur la touche Echap).
{{event("dragenter")}}{{domxref("DragEvent")}}HTML5Un élément ou une sélection de texte en cours de glisser-déposer entre dans une zone valide de dépôt.
{{event("dragleave")}}{{domxref("DragEvent")}}HTML5Un élément ou une sélection de texte en cours de glisser-déposer quitte une zone valide de dépôt.
{{event("dragover")}}{{domxref("DragEvent")}}HTML5Un élément ou une sélection de texte en cours de glisser-déposer survole une zone valide de dépôt (toutes les 350ms).
{{event("dragstart")}}{{domxref("DragEvent")}}HTML5L'utilisateur commence à glisser un élément ou une sélection de texte.
{{event("drop")}}{{domxref("DragEvent")}}HTML5Un élément est déposé sur une zone valide de dépôt.
{{event("durationchange")}}{{domxref("Event")}}HTML5 mediaL'attribut duration (durée) a été mis à jour.
{{event("emptied")}}{{domxref("Event")}}HTML5 mediaLe média a été vidé ; par exemple, cet événement est déclenché si un média a déjà été chargé (au moins partiellement) et que la méthode load() (charger) est appelée pour le recharger.
{{event("ended")}}{{domxref("Event")}}HTML5 mediaLa lecture a été interrompue car la fin du média a été atteinte.
{{event("ended_(Web_Audio)", "ended")}}{{domxref("Event")}}{{SpecName("Web Audio API")}}
{{event("endEvent")}}{{domxref("TimeEvent")}}SVGUne animation SMIL est terminé.
{{event("error")}}{{domxref("UIEvent")}}DOM L3Le chargement d'une ressource a échoué.
{{event("error")}}{{domxref("ProgressEvent")}}Progress et XMLHttpRequestLa progression a échoué.
{{event("error")}}{{domxref("Event")}}OfflineUne erreur a eu lieu lors du téléchargement du manifeste de cache ou lors de la mise à jour du contenu de l'application.
{{event("error")}}{{domxref("Event")}}WebSocketUne connexion WebSocket a été fermée avec préjudice (par exemple, des données n'ont pas pu être envoyées).
{{event("error")}}{{domxref("Event")}}Server Sent EventsUne connexion de la source d'événement a échoué.
{{event("error")}}{{domxref("Event")}}IndexedDBUne requête a causé une erreur et a échoué.
{{event("focus")}}{{domxref("FocusEvent")}}DOM L3Un élément a acquis le focus (ne se propage pas).
{{event("focusin")}}{{domxref("FocusEvent")}}DOM L3Un élément est sur le point d'acquérir le focus (se propage).
{{event("focusout")}}{{domxref("FocusEvent")}}DOM L3Un élément est sur le point de perdre le focus (se propage).
{{event("fullscreenchange")}}{{domxref("Event")}}Full ScreenUn élément est passé en mode plein écran, ou est revenu au mode normal.
{{event("fullscreenerror")}}{{domxref("Event")}}Full ScreenIl est impossible de passer en mode plein écran pour des raisons techniques ou parce que la permission a été refusée.
{{event("gamepadconnected")}}{{domxref("GamepadEvent")}}GamepadUne manette de jeu a été connectée.
{{event("gamepaddisconnected")}}{{domxref("GamepadEvent")}}GamepadUne manette de jeu a été déconnectée.
{{event("hashchange")}}{{domxref("HashChangeEvent")}}HTML5L'identifiicateur de fragment de l'URL a été changé (la partie de l'URL après le #).
{{event("input")}}{{domxref("Event")}}HTML5La valeur d'un élément change ou le contenu d'un élément avec l'attribut contenteditable est modifié.
{{event("invalid")}}{{domxref("Event")}}HTML5Un élément à soumettre a été vérifié et ne satisfait pas ses contraintes.
{{event("keydown")}}{{domxref("KeyboardEvent")}}DOM L3Une touche est enfoncée.
{{event("keypress")}}{{domxref("KeyboardEvent")}}DOM L3Une touche est pressée et cette touche produit normalement un caractère (utilisez input à la place).
{{event("keyup")}}{{domxref("KeyboardEvent")}}DOM L3Une touche est relâchée.
{{event("languagechange")}}{{domxref("Event")}}{{ SpecName('HTML5.1', '#dom-navigator-languages', 'NavigatorLanguage.languages') }}
{{event("levelchange")}}{{domxref("Event")}}Battery statusL'attribut level a été mis à jour.
{{event("load")}}{{domxref("UIEvent")}}DOM L3Une ressource et ses ressources dépendantes ont fini de se charger.
load{{domxref("ProgressEvent")}}Progress et XMLHttpRequestLa progression est réussie.
{{event("loadeddata")}}{{domxref("Event")}}HTML5 mediaLe premier cadre du média a fini de se charger.
{{event("loadedmetadata")}}{{domxref("Event")}}HTML5 mediaLes metadata ont été chargées.
{{event("loadend")}}{{domxref("ProgressEvent")}}Progress et XMLHttpRequestProgress has stopped (after "error", "abort" or "load" have been dispatched).
{{event("loadstart")}}{{domxref("ProgressEvent")}}Progress et XMLHttpRequestProgress has begun.
message{{domxref("MessageEvent")}}WebSocketA message is received through a WebSocket.
message{{domxref("MessageEvent")}}Web WorkersA message is received from a Web Worker.
message{{domxref("MessageEvent")}}Web MessagingA message is received from a child (i)frame or a parent window.
message{{domxref("MessageEvent")}}Server Sent EventsA message is received through an event source.
{{event("mousedown")}}{{domxref("MouseEvent")}}DOM L3A pointing device button (usually a mouse) is pressed on an element.
{{event("mouseenter")}}{{domxref("MouseEvent")}}DOM L3A pointing device is moved onto the element that has the listener attached.
{{event("mouseleave")}}{{domxref("MouseEvent")}}DOM L3A pointing device is moved off the element that has the listener attached.
{{event("mousemove")}}{{domxref("MouseEvent")}}DOM L3A pointing device is moved over an element.
{{event("mouseout")}}{{domxref("MouseEvent")}}DOM L3A pointing device is moved off the element that has the listener attached or off one of its children.
{{event("mouseover")}}{{domxref("MouseEvent")}}DOM L3A pointing device is moved onto the element that has the listener attached or onto one of its children.
{{event("mouseup")}}{{domxref("MouseEvent")}}DOM L3A pointing device button is released over an element.
{{event("noupdate")}}{{domxref("Event")}}OfflineThe manifest hadn't changed.
{{event("obsolete")}}{{domxref("Event")}}OfflineThe manifest was found to have become a 404 or 410 page, so the application cache is being deleted.
{{event("offline")}}{{domxref("Event")}}HTML5 offlineThe browser has lost access to the network.
{{event("online")}}{{domxref("Event")}}HTML5 offlineThe browser has gained access to the network (but particular websites might be unreachable).
open{{domxref("Event")}}WebSocketA WebSocket connection has been established.
open{{domxref("Event")}}Server Sent EventsAn event source connection has been established.
{{event("orientationchange")}}{{domxref("Event")}}Screen OrientationThe orientation of the device (portrait/landscape) has changed
{{event("pagehide")}}{{domxref("PageTransitionEvent")}}HTML5A session history entry is being traversed from.
{{event("pageshow")}}{{domxref("PageTransitionEvent")}}HTML5A session history entry is being traversed to.
{{event("paste")}}{{domxref("ClipboardEvent")}}ClipboardData has been transfered from the system clipboard to the document.
{{event("pause")}}{{domxref("Event")}}HTML5 mediaPlayback has been paused.
{{event("pointerlockchange")}}{{domxref("Event")}}Pointer LockThe pointer was locked or released.
{{event("pointerlockerror")}}{{domxref("Event")}}Pointer LockIt was impossible to lock the pointer for technical reasons or because the permission was denied.
{{event("play")}}{{domxref("Event")}}HTML5 mediaPlayback has begun.
{{event("playing")}}{{domxref("Event")}}HTML5 mediaPlayback is ready to start after having been paused or delayed due to lack of data.
{{event("popstate")}}{{domxref("PopStateEvent")}}HTML5A session history entry is being navigated to (in certain cases).
{{event("progress")}}{{domxref("ProgressEvent")}}Progress and XMLHttpRequestIn progress.
progress{{domxref("ProgressEvent")}}OfflineThe user agent is downloading resources listed by the manifest.
{{event("ratechange")}}{{domxref("Event")}}HTML5 mediaThe playback rate has changed.
{{event("readystatechange")}}{{domxref("Event")}}HTML5 et XMLHttpRequestThe readyState attribute of a document has changed.
{{event("repeatEvent")}}{{domxref("TimeEvent")}}SVGA SMIL animation element is repeated.
{{event("reset")}}{{domxref("Event")}}DOM L2, HTML5A form is reset.
{{event("resize")}}{{domxref("UIEvent")}}DOM L3The document view has been resized.
{{event("scroll")}}{{domxref("UIEvent")}}DOM L3The document view or an element has been scrolled.
{{event("seeked")}}{{domxref("Event")}}HTML5 mediaA seek operation completed.
{{event("seeking")}}{{domxref("Event")}}HTML5 mediaA seek operation began.
{{event("select")}}{{domxref("UIEvent")}}DOM L3Some text is being selected.
{{event("show")}}{{domxref("MouseEvent")}}HTML5A contextmenu event was fired on/bubbled to an element that has a contextmenu attribute
{{event("stalled")}}{{domxref("Event")}}HTML5 mediaThe user agent is trying to fetch media data, but data is unexpectedly not forthcoming.
{{event("storage")}}{{domxref("StorageEvent")}}Web StorageA storage area (localStorage or sessionStorage) has changed.
{{event("submit")}}{{domxref("Event")}}DOM L2, HTML5A form is submitted.
success{{domxref("Event")}}IndexedDBA request successfully completed.
{{event("suspend")}}{{domxref("Event")}}HTML5 mediaMedia data loading has been suspended.
{{event("SVGAbort")}}{{domxref("SVGEvent")}}SVGPage loading has been stopped before the SVG was loaded.
{{event("SVGError")}}{{domxref("SVGEvent")}}SVGAn error has occurred before the SVG was loaded.
{{event("SVGLoad")}}{{domxref("SVGEvent")}}SVGAn SVG document has been loaded and parsed.
{{event("SVGResize")}}{{domxref("SVGEvent")}}SVGAn SVG document is being resized.
{{event("SVGScroll")}}{{domxref("SVGEvent")}}SVGAn SVG document is being scrolled.
{{event("SVGUnload")}}{{domxref("SVGEvent")}}SVGAn SVG document has been removed from a window or frame.
{{event("SVGZoom")}}{{domxref("SVGZoomEvent")}}SVGAn SVG document is being zoomed.
{{event("timeout")}}{{domxref("ProgressEvent")}}XMLHttpRequest
{{event("timeupdate")}}{{domxref("Event")}}HTML5 mediaThe time indicated by the currentTime attribute has been updated.
{{event("touchcancel")}}{{domxref("TouchEvent")}}Touch EventsA touch point has been disrupted in an implementation-specific manners (too many touch points for example).
{{event("touchend")}}{{domxref("TouchEvent")}}Touch EventsA touch point is removed from the touch surface.
{{event("touchenter")}}{{domxref("TouchEvent")}}Touch Events RemovedA touch point is moved onto the interactive area of an element.
{{event("touchleave")}}{{domxref("TouchEvent")}}Touch Events RemovedA touch point is moved off the interactive area of an element.
{{event("touchmove")}}{{domxref("TouchEvent")}}Touch EventsA touch point is moved along the touch surface.
{{event("touchstart")}}{{domxref("TouchEvent")}}Touch EventsA touch point is placed on the touch surface.
{{event("transitionend")}}{{domxref("TransitionEvent")}}CSS TransitionsA CSS transition has completed.
{{event("unload")}}{{domxref("UIEvent")}}DOM L3The document or a dependent resource is being unloaded.
{{event("updateready")}}{{domxref("Event")}}OfflineThe resources listed in the manifest have been newly redownloaded, and the script can use swapCache() to switch to the new cache.
upgradeneededIndexedDBAn 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("SensorEvent")}}SensorFresh data is available from a proximity sensor (indicates whether the nearby object is near the device or not).
versionchangeIndexedDBA versionchange transaction completed.
{{event("visibilitychange")}}{{domxref("Event")}}Page visibilityThe content of a tab has become visible or has been hidden.
{{event("volumechange")}}{{domxref("Event")}}HTML5 mediaThe volume has changed.
{{event("waiting")}}{{domxref("Event")}}HTML5 mediaPlayback has stopped because of a temporary lack of data.
{{event("wheel")}}{{gecko_minversion_inline("17")}}{{domxref("WheelEvent")}}DOM L3A wheel button of a pointing device is rotated in any direction.
- -

Non-standard events

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Event NameEvent TypeSpecificationFired when...
{{event("afterscriptexecute")}}{{domxref("Event")}}Mozilla SpecificA script has been executed.
{{event("beforescriptexecute")}}{{domxref("Event")}}Mozilla SpecificA script is about to be executed.
{{event("cardstatechange")}}Firefox OS specificThe {{domxref("MozMobileConnection.cardState")}} property changes value.
{{event("change")}}{{domxref("DeviceStorageChangeEvent")}}Firefox OS specificThis event is triggered each time a file is created, modified or deleted on a given storage area.
{{event("connectionInfoUpdate")}}Firefox OS specificThe informations about the signal strength and the link speed have been updated.
{{event("cfstatechange")}}Firefox OS specificThe call forwarding state changes.
{{event("datachange")}}Firefox OS specificThe {{domxref("MozMobileConnection.data")}} object changes values.
{{event("dataerror")}}Firefox OS specificThe {{domxref("MozMobileConnection.data")}} object receive an error from the RIL.
{{event("DOMMouseScroll")}}{{deprecated_inline}}Mozilla specificThe wheel button of a pointing device is rotated (detail attribute is a number of lines). (use {{event("wheel")}} instead)
dragdrop {{deprecated_inline}}DragEventMozilla specificAn element is dropped (use {{event("drop")}} instead).
dragexit {{deprecated_inline}}DragEventMozilla specificA drag operation is being ended(use {{event("dragend")}} instead).
draggesture {{deprecated_inline}}DragEventMozilla specificThe user starts dragging an element or text selection (use {{event("dragstart")}} instead).
{{event("icccardlockerror")}}Firefox OS specificthe {{domxref("MozMobileConnection.unlockCardLock()")}} or {{domxref("MozMobileConnection.setCardLock()")}} methods fails.
{{event("iccinfochange")}}Firefox OS specificThe {{domxref("MozMobileConnection.iccInfo")}} object changes.
{{event("localized")}}Mozilla SpecificThe page has been localized using data-l10n-* attributes.
{{event("mousewheel")}}{{deprecated_inline}}IE inventedThe wheel button of a pointing device is rotated.
{{event("MozAudioAvailable")}}{{domxref("Event")}}Mozilla specificThe audio buffer is full and the corresponding raw samples are available.
MozBeforeResize {{obsolete_inline}}Mozilla specificA window is about to be resized.
{{event("mozbrowserclose")}}Firefox OS specificSent when window.close() is called within a browser iframe.
{{event("mozbrowsercontextmenu")}}Firefox OS specificSent when a browser {{HTMLElement("iframe")}} try to open a context menu.
{{event("mozbrowsererror")}}Firefox OS specificSent when an error occured while trying to load a content within a browser iframe
{{event("mozbrowsericonchange")}}Firefox OS specificSent when the favicon of a browser iframe changes.
{{event("mozbrowserlocationchange")}}Firefox OS specificSent when an browser iframe's location changes.
{{event("mozbrowserloadend")}}Firefox OS specificSent when the browser iframe has finished loading all its assets.
{{event("mozbrowserloadstart")}}Firefox OS specificSent when the browser iframe starts to load a new page.
{{event("mozbrowseropenwindow")}}Firefox OS specificSent when {{domxref("window.open()")}} is called within a browser iframe.
{{event("mozbrowsersecuritychange")}}Firefox OS specificSent when the SSL state changes within a browser iframe.
{{event("mozbrowsershowmodalprompt")}}Firefox OS specificSent when {{domxref("window.alert","alert()")}}, {{domxref("window.confirm","confirm()")}} or {{domxref("window.prompt","prompt()")}} are called within a browser iframe
{{event("mozbrowsertitlechange")}}Firefox OS specificSent when the document.title changes within a browser iframe.
{{event("MozGamepadButtonDown")}}To be specifiedA gamepad button is pressed down.
{{event("MozGamepadButtonUp")}}To be specifiedA gamepad button is released.
{{event("MozMousePixelScroll")}} {{deprecated_inline}}Mozilla specificThe wheel button of a pointing device is rotated (detail attribute is a number of pixels). (use wheel instead)
{{event("MozOrientation")}} {{deprecated_inline}}Mozilla specificFresh data is available from an orientation sensor (see deviceorientation).
{{event("MozScrolledAreaChanged")}}{{domxref("UIEvent")}}Mozilla specificThe document view has been scrolled or resized.
{{event("moztimechange")}}Mozilla specificThe time of the device has been changed.
MozTouchDown {{deprecated_inline}}Mozilla specificA touch point is placed on the touch surface (use touchstart instead).
MozTouchMove {{deprecated_inline}}Mozilla specificA touch point is moved along the touch surface (use touchmove instead).
MozTouchUp {{deprecated_inline}}Mozilla specificA touch point is removed from the touch surface (use touchend instead).
{{event("alerting")}}{{domxref("CallEvent")}}To be specifiedThe correspondent is being alerted (his/her phone is ringing).
{{event("busy")}}{{domxref("CallEvent")}}To be specifiedThe line of the correspondent is busy.
{{event("callschanged")}}{{domxref("CallEvent")}}To be specifiedA call has been added or removed from the list of current calls.
onconnected {{event("connected")}}{{domxref("CallEvent")}}To be specifiedA call has been connected.
{{event("connecting")}}{{domxref("CallEvent")}}To be specifiedA call is about to connect.
{{event("delivered")}}{{domxref("SMSEvent")}}To be specifiedAn SMS has been successfully delivered.
{{event("dialing")}}{{domxref("CallEvent")}}To be specifiedThe number of a correspondent has been dialed.
{{event("disabled")}}Firefox OS specificWifi has been disabled on the device.
{{event("disconnected")}}{{domxref("CallEvent")}}To be specifiedA call has been disconnected.
{{event("disconnecting")}}{{domxref("CallEvent")}}To be specifiedA call is about to disconnect.
{{event("enabled")}}Firefox OS specificWifi has been enabled on the device.
{{event("error_(Telephony)","error")}}{{domxref("CallEvent")}}To be specifiedAn error occurred.
{{event("held")}}{{domxref("CallEvent")}}To be specifiedA call has been held.
{{event("holding")}}{{domxref("CallEvent")}}To be specifiedA call is about to be held.
{{event("incoming")}}{{domxref("CallEvent")}}To be specifiedA call is being received.
{{event("received")}}{{domxref("SMSEvent")}}To be specifiedAn SMS has been received.
{{event("resuming")}}{{domxref("CallEvent")}}To be specifiedA call is about to resume.
{{event("sent")}}{{domxref("SMSEvent")}}To be specifiedAn SMS has been sent.
{{event("statechange")}}{{domxref("CallEvent")}}To be specifiedThe state of a call has changed.
{{event("statuschange")}}Firefox OS specificThe status of the Wifi connection changed.
{{event("overflow")}}{{domxref("UIEvent")}}Mozilla specificAn 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 specificA smartcard has been inserted.
{{event("smartcard-remove")}}Mozilla specificA smartcard has been removed.
{{event("stkcommand")}}Firefox OS specificThe STK Proactive Command is issued from ICC.
{{event("stksessionend")}}Firefox OS specificThe STK Session is terminated by ICC.
textMozilla SpecificA generic composition event occurred.
{{event("underflow")}}{{domxref("UIEvent")}}Mozilla specificAn element is no longer overflowed by its content (only works for elements styled with overflow != visible).
uploadprogress {{deprecated_inline}}{{domxref("ProgressEvent")}}Mozilla SpecificUpload is in progress (see {{event("progress")}}).
-

{{event("ussdreceived")}}

-
Firefox OS specificA new USSD message is received
{{event("voicechange")}}Firefox OS specificThe {{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.

+
+

Note

+

Cette page répertorie les événements les plus courants que vous rencontrerez sur le Web. Si vous recherchez un événement qui n'est pas répertorié ici, essayez de rechercher son nom, son domaine ou les spécifications associées sur le reste du MDN.

-

XUL events

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

Add-on-specific events

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Event NameEvent TypeSpecificationFired when...
MozSwipeGestureAddons specificA touch point is swiped across the touch surface
MozMagnifyGestureStartAddons specificTwo touch points start to move away from each other.
MozMagnifyGestureUpdateAddons specificTwo touch points move away from each other (after a MozMagnifyGestureStart).
MozMagnifyGestureAddons specificTwo touch points moved away from each other (after a sequence of MozMagnifyGestureUpdate).
MozRotateGestureStartAddons specificTwo touch points start to rotate around a point.
MozRotateGestureUpdateAddons specificTwo touch points rotate around a point (after a MozRotateGestureStart).
MozRotateGestureAddons specificTwo touch points rotate around a point (after a sequence of MozRotateGestureUpdate).
MozTapGestureAddons specificTwo touch points are tapped on the touch surface.
MozPressTapGestureAddons specificA "press-tap" gesture happened on the touch surface (first finger down, second finger down, second finger up, first finger up).
MozEdgeUIGestureAddons specificA touch point is swiped across the touch surface to invoke the edge UI (Win8 only).
MozAfterPaintAddons specificContent has been repainted.
DOMPopupBlockedAddons specificA popup has been blocked
DOMWindowCreatedAddons specificA window has been created.
DOMWindowCloseAddons specificA window is about to be closed.
DOMTitleChangedAddons specifcThe title of a window has changed.
DOMLinkAddedAddons specifcA link has been added a document.
DOMLinkRemovedAddons specifcA link has been removed inside from a document.
DOMMetaAddedAddons specificA meta element has been added to a document.
DOMMetaRemovedAddons specificA meta element has been removed from a document.
DOMWillOpenModalDialogAddons specificA modal dialog is about to open.
DOMModalDialogClosedAddons specificA modal dialog has been closed.
DOMAutoCompleteAddons specificThe content of an element has been auto-completed.
DOMFrameContentLoadedAddons specificThe frame has finished loading (but not its dependent resources).
AlertActiveAddons specificA notification element is shown.
AlertCloseAddons specificA notification element is closed.
fullscreenAddons specificBrowser fullscreen mode has been entered or left.
sizemodechangeAddons specificWindow has entered/left fullscreen mode, or has been minimized/unminimized.
MozEnteredDomFullscreenAddons specificDOM fullscreen mode has been entered.
SSWindowClosingAddons specificThe session store will stop tracking this window.
SSTabClosingAddons specificThe session store will stop tracking this tab.
SSTabRestoringAddons specificA tab is about to be restored.
SSTabRestoredAddons specificA tab has been restored.
SSWindowStateReadyAddons specificA window state has switched to "ready".
SSWindowStateBusyAddons specificA window state has switched to "busy".
tabviewsearchenabledAddons specificThe search feature of Panorama has been activated
tabviewsearchdisabledAddons specificThe search feature of Panorama has been deactivated
tabviewframeinitializedAddons specificThe frame container of Panorama has been initialized
tabviewshownAddons specificThe Panorama tab has been shown
tabviewhiddenAddons specificThe Panorama tab has been hidden
TabOpenAddons specificA tab has been opened.
TabCloseAddons specificA tab has been closed.
TabSelectAddons specificA tab has been selected.
TabShowAddons specificA tab has been shown.
TabHideAddons specificA tab has been hidden.
TabPinnedAddons specificA tab has been pinned.
TabUnpinnedAddons specificA tab has been unpinned.
- -

Developer tool-specific events

- - - - - - - - - - - - - - - - - - - - - - - - - - - - +

Index des événements

+ +
Event NameEvent TypeSpecificationFired when...
CssRuleViewRefresheddevtools specificThe "Rules" view of the style inspector has been updated.
CssRuleViewChangeddevtools specificThe "Rules" view of the style inspector has been changed.
CssRuleViewCSSLinkClickeddevtools specificA link to a CSS file has been clicked in the "Rules" view of the style inspector.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Type d'événementDescriptionDocumentation
Animation +

Les événements liés à l'API Web Animation API.

+

Utilisé pour répondre aux changements d'état de l'animation (par exemple, lorsqu'une animation commence ou se termine).

+
Événements d'animation déclenchés sur Document, Window, HTMLElement.
Récupération asynchrone des données +

Événements liés à l'extraction des données.

+
Événements déclenchés sur AbortSignal, XMLHttpRequest, FileReader.
Presse-papiers +

Les événements liés à l'API Clipboard API.

+

Utilisé pour notifier lorsque le contenu est coupé, copié ou collé.

+
Événements déclenchés sur Document, Element, Window. +
Composition +

Événements liés à la composition ; saisie "indirecte" du texte (au lieu d'utiliser les touches normales du clavier).

+

Par exemple, un texte saisi via un moteur de conversion de la parole en texte, ou l'utilisation de combinaisons de touches spéciales qui modifient les pressions sur le clavier pour représenter de nouveaux caractères dans une autre langue.

+
Événements déclenchés sur Element. +
Transition CSS +

Événements liés aux Transitions CSS.

+

Fournit des événements de notification lorsque les transitions CSS commencent, s'arrêtent, sont annulées, etc.

+
Événements déclenchés sur Document, HTMLElement, Window.
Base de données +

Événements liés aux opérations de la base de données : ouverture, fermeture, transactions, erreurs, etc.

+
Événements déclenchés sur IDBDatabase, IDBOpenDBRequest, IDBRequest, IDBTransaction.
Glisser/Déposer, Roue +

Les événements liés à l'utilisation de l'API Glisser/Déposer et WheelEvent.

+

Les événements Glisser/Déposer et Roue sont dérivés des événements de la souris. Bien qu'ils soient déclenchés lors de l'utilisation de la molette de la souris ou du glisser/déposer, ils peuvent également être utilisés avec d'autres matériels appropriés.

+
+

Les événements de Glisser/Déposer déclenchés sur Document

+

Les événements de la Roue déclenchés sur Document et Element

+
Focus +

Les événements liés aux éléments qui gagnent et perdent le focus.

+
Événements déclenchés sur Element, Window. +
Formulaire +

Événements liés à la construction, la réinitialisation et la soumission de formulaires.

+
Événements déclenchés sur HTMLFormElement. +
Plein écran +

Evénements relatifs à l'API Fullscreen API.

+

Utilisé pour notifier la transition entre le mode plein écran et le mode fenêtré, ainsi que les erreurs survenant pendant cette transition.

+
Événements déclenchés sur Document, Element.
Manette de jeu +

Evénements relatifs à l'API Gamepad API.

+
Événements déclenchés sur Window. +
Historique +

Les événements liés à l'API de Manipulation de l'historique du navigateur.

+
Événements déclenchés sur Window. +
Gestion de l'affichage du contenu des éléments HTML +

Événements liés à la modification de l'état d'un élément d'affichage ou textuel.

+
Événements déclenchés sur HTMLDetailsElement, HTMLDialogElement, HTMLSlotElement. +
Entrées +

Événements liés aux éléments d'entrée HTML, par ex. {{HTMLElement("input")}}, {{HTMLElement("select")}}, ou {{HTMLElement("textarea")}}.

+
Événements déclenchés sur HTMLElement, HTMLInputElement.
Clavier +

Événements liés à l'utilisation d'un clavier.

+

Utilisé pour notifier lorsque les touches sont déplacées vers le haut, vers le bas, ou simplement pressées.

+
Événements déclenchés sur Document, Element. +
Chargement/déchargement des documents +

Événements liés au chargement et au déchargement des documents.

+
+

Événements déclenchés sur Document et Window.

+
Manifeste +

Événements liés à l'installation de Manifeste des applications web.

+
Événements déclenchés sur Window.
Médias +

Événements liés à l'utilisation des médias (y compris l'API de capture et de diffusion de médias, Web Audio API, Picture-in-Picture API, etc.).

+
Événements déclenchés sur ScriptProcessorNode, HTMLMediaElement, AudioTrackList, AudioScheduledSourceNode, MediaRecorder, MediaStream, MediaStreamTrack, VideoTrackList, HTMLTrackElement, OfflineAudioContext, TextTrack, TextTrackList, Element/audio, Element/video. +
Messagerie +

Événements liés à la réception par une fenêtre d'un message provenant d'un autre contexte de navigation.

+
Événements déclenchés sur Window.
Souris +

Événements liés à l'utilisation d'une souris d'ordinateur.

+

Utilisé pour notifier le clic de la souris, le double-clic, les événements haut et bas, le clic droit, le déplacement dans et hors d'un élément, la sélection de texte, etc.

+

Les événements de type pointeur constituent une alternative aux événements de type souris, indépendamment du matériel utilisé. Les événements de type "glisser" et "roue" sont dérivés des événements de type "souris".

+
Les événements de souris déclenchés sur Element
Réseau/Connexion +

Événements liés à l'obtention et à la perte d'une connexion réseau.

+
+

Événements déclenchés sur Window.

+

Événements déclenchés sur NetworkInformation (Network Information API).

+
Paiements +

Les événements liés à l'API Payment Request API.

+
+

Événements déclenchés sur PaymentRequest, PaymentResponse.

+
Performance +

Événements liés aux APIs Performance API, Performance Timeline API, Navigation Timing API, User Timing API, et Resource Timing API.

+
+

Événements déclenchés sur Performance.

+
Pointeur +

Les événements liés à l'API Pointer Events API.

+

Fournit une notification agnostique du matériel à partir des dispositifs de pointage, y compris la souris, la souris tactile, le stylo/stylet.

+
Événements déclenchés sur Document, HTMLElement.
Imprimer +

Événements liés à l'impression.

+
Événements déclenchés sur Window.
Rejet de promesse +

Événements envoyés au contexte global du script lorsqu'une promesse JavaScript est rejetée.

+
Événements déclenchés sur Window.
Sockets +

Les événements liés à l'API WebSockets API.

+
Événements déclenchés sur Websocket.
SVG +

Événements liés aux images SVG.

+
+

Événements déclenchés sur SVGElement, SVGAnimationElement, SVGGraphicsElement.

+
Sélection de texte +

Événements liés à la sélection du texte.

+
+

Événements déclenchés sur Document.

+
Tactile +

Les événements liés à l'API Événements tactiles.

+

Fournit des événements de notification provenant de l'interaction avec un écran tactile (c'est-à-dire l'utilisation d'un doigt ou d'un stylet). Non lié à l'API Force Touch API.

+
Événements déclenchés sur Document, Element.
Réalité virtuelle +

Les événements liés à l'API WebXR Device API.

+
+

L'API WebVR API (et les événements associés à Window) sont dépréciés.

+
+
Événements déclenchés sur XRSystem, XRSession, XRReferenceSpace.
RTC (communication en temps réel) +

Les événements liés à l'API WebRTC API.

+
Événements déclenchés sur RTCDataChannel, RTCDTMFSender, RTCIceTransport, RTCPeerConnection.
Événements envoyés par le serveur +

Les événements liés à l'API des événements envoyés par le serveur.

+
Événements déclenchés sur EventSource. +
Synthèse vocale +

Les événements liés à l'API Web Speech API.

+
Événements déclenchés sur SpeechSynthesisUtterance.
Workers +

Les événements liés aux APIs Web Workers API, Service Worker API, Broadcast Channel API, et Channel Messaging API.

+

Utilisé pour répondre aux nouveaux messages et aux erreurs d'envoi de messages. Les travailleurs de service peuvent également être notifiés d'autres événements, notamment les notifications push, les utilisateurs qui cliquent sur les notifications affichées, le fait que l'abonnement push a été invalidé, la suppression d'éléments de l'index de contenu, etc.

+
Événements déclenchés sur ServiceWorkerGlobalScope, DedicatedWorkerGlobalScope, SharedWorkerGlobalScope, WorkerGlobalScope, Worker, WorkerGlobalScope, BroadcastChannel, MessagePort. +
-

Categories

- -

Animation events

- -

{{event("animationend")}}, {{event("animationiteration")}}, {{event("animationstart")}}, {{event("beginEvent")}}, {{event("endEvent")}}, {{event("repeatEvent")}}

- -

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

- -

CSS events

- -

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

- -

Database events

- -

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

- -

Document events

- -

DOMLinkAdded, DOMLinkRemoved, DOMMetaAdded, DOMMetaRemoved, DOMWillOpenModalDialog, DOMModalDialogClosed, {{event("unload")}}

- -

DOM mutation events

- -

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

- -

Drag events

- -

{{event("drag")}}, dragdrop, {{event("dragend")}}, {{event("dragenter")}}, dragexit, draggesture, {{event("dragleave")}}, {{event("dragover")}}, {{event("dragstart")}}, {{event("drop")}}

- -

Element events

- -

{{event("invalid")}}, {{event("overflow")}}, {{event("underflow")}}, DOMAutoComplete, {{event("command")}}, {{event("commandupdate")}}

- -

Focus events

- -

{{event("blur")}}, {{event("change")}}, DOMFocusIn, DOMFocusOut, {{event("focus")}}, {{event("focusin")}}, {{event("focusout")}}

- -

Form events

- -

{{event("reset")}}, {{event("submit")}}

- -

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

- -

Input device events

- -

{{event("click")}}, {{event("contextmenu")}}, {{event("DOMMouseScroll")}}, {{event("dblclick")}}, {{event("gamepadconnected")}}, {{event("gamepaddisconnected")}}, {{event("keydown")}}, {{event("keypress")}}, {{event("keyup")}}, {{event("MozGamepadButtonDown")}}, {{event("MozGamepadButtonUp")}}, {{event("mousedown")}}, {{event("mouseenter")}}, {{event("mouseleave")}}, {{event("mousemove")}}, {{event("mouseout")}}, {{event("mouseover")}}, {{event("mouseup")}}, {{event("mousewheel")}}, {{event("MozMousePixelScroll")}}, {{event("pointerlockchange")}}, {{event("pointerlockerror")}},{{event("wheel")}}

- -

Media events

- -

{{event("audioprocess")}}, {{event("canplay")}}, {{event("canplaythrough")}}, {{event("durationchange")}}, {{event("emptied")}}, {{event("ended")}}, {{event("ended_(Web_Audio)", "ended")}}, {{event("loadeddata")}}, {{event("loadedmetadata")}}, {{event("MozAudioAvailable")}}, {{event("pause")}}, {{event("play")}}, {{event("playing")}}, {{event("ratechange")}}, {{event("seeked")}}, {{event("seeking")}}, {{event("stalled")}}, {{event("suspend")}}, {{event("timeupdate")}}, {{event("volumechange")}}, {{event("waiting")}}, {{event("complete")}}

- - - -

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

- -

Network events

- -

{{event("datachange")}}, {{event("dataerror")}}, {{event("disabled")}}, {{event("enabled")}}, {{event("offline")}}, {{event("online")}}, {{event("statuschange")}}, {{event("connectionInfoUpdate")}},

- -

Notification events

- -

AlertActive, AlertClose

- - - -

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

- -

Printing events

- -

{{event("afterprint")}}, {{event("beforeprint")}}

- -

Progress events

- -

abort, {{event("error")}}, load, {{event("loadend")}}, {{event("loadstart")}}, {{event("progress")}}, progress, {{event("timeout")}}, uploadprogress

- -

Resource events

- -

{{event("abort")}}, {{event("cached")}}, {{event("error")}}, {{event("load")}}

- -

Script events

- -

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

- -

Sensor events

- -

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

- -

Session history events

- -

{{event("pagehide")}}, {{event("pageshow")}}, {{event("popstate")}}

- -

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

- -

Storage events

- -

{{event("change")}}, {{event("storage")}}

- -

SVG events

- -

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

- -

Tab events

- -

tabviewsearchenabled, tabviewsearchdisabled, tabviewframeinitialized, tabviewshown, tabviewhidden, TabOpen, TabClose, TabSelect, TabShow, TabHide, TabPinned, TabUnpinned, SSTabClosing, SSTabRestoring, SSTabRestored, {{event("visibilitychange")}}

- -

Text events

- -

{{event("compositionend")}}, {{event("compositionstart")}}, {{event("compositionupdate")}}, {{event("copy")}}, {{event("cut")}}, {{event("paste")}}, {{event("select")}}, text

- -

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

- -

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

- -

View events

- -

fullscreen, {{event("fullscreenchange")}}, {{event("fullscreenerror")}}, MozEnteredDomFullscreen, {{event("MozScrolledAreaChanged")}}, {{event("resize")}}, {{event("scroll")}}, sizemodechange

- -

Événements Websocket

- -

close, {{event("error")}}, message, open

- -

Événements de fenêtre

- -

DOMWindowCreated, DOMWindowClose, DOMTitleChanged, MozBeforeResize {{obsolete_inline}}, SSWindowClosing, SSWindowStateReady, SSWindowStateBusy, close

- -

Événements non classés

- -

{{event("beforeunload")}}, {{event("localized")}}, message, message, message, MozAfterPaint, {{event("moztimechange")}}, open, {{event("show")}}

- -

Voir aussi

- - +

Listing des événements

+ +

Cette section répertorie les événements qui ont leurs propres pages de référence sur MDN. Si vous êtes intéressé par un événement qui n'est pas listé ici, essayez de rechercher son nom, son domaine ou les spécifications associées sur le reste de MDN.

+ +
+
{{DOMxRef("AbortSignal")}}
+
+ +
+
{{DOMxRef("AudioScheduledSourceNode")}}
+
+ +
+
{{DOMxRef("AudioTrackList")}}
+
+ +
+
{{DOMxRef("BroadcastChannel")}}
+
+ +
+
{{DOMxRef("DedicatedWorkerGlobalScope")}}
+
+ +
+
{{DOMxRef("Document")}}
+
+ +
+
{{DOMxRef("Element")}}
+
+ +
+
{{DOMxRef("EventSource")}}
+
+ +
+
{{DOMxRef("FileReader")}}
+
+ +
+
{{DOMxRef("HTMLCanvasElement")}}
+
+ +
+
{{DOMxRef("HTMLDetailsElement")}}
+
+ +
+
{{DOMxRef("HTMLDialogElement")}}
+
+ +
+
{{DOMxRef("HTMLElement")}}
+
+ +
+
{{DOMxRef("HTMLFormElement")}}
+
+ +
+
{{DOMxRef("HTMLInputElement")}}
+
+ +
+
{{DOMxRef("HTMLMediaElement")}}
+
+ +
+
{{DOMxRef("HTMLSlotElement")}}
+
+ +
+
{{DOMxRef("HTMLTrackElement")}}
+
+ +
+
{{DOMxRef("HTMLVideoElement")}}
+
+ +
+
{{DOMxRef("IDBDatabase")}}
+
+ +
+
{{DOMxRef("IDBOpenDBRequest")}}
+
+ +
+
{{DOMxRef("IDBRequest")}}
+
+ +
+
{{DOMxRef("IDBTransaction")}}
+
+ +
+
{{DOMxRef("MediaDevices")}}
+
+ +
+
{{DOMxRef("MediaRecorder")}}
+
+ +
+
{{DOMxRef("MediaStream")}}
+
+ +
+
{{DOMxRef("MediaStreamTrack")}}
+
+ +
+
{{DOMxRef("MessagePort")}}
+
+ +
+
{{DOMxRef("OfflineAudioContext")}}
+
+ +
+
{{DOMxRef("PaymentRequest")}}
+
+ +
+
{{DOMxRef("PaymentResponse")}}
+
+ +
+
{{DOMxRef("Performance")}}
+
+ +
+
{{DOMxRef("PictureInPictureWindow")}}
+
+ +
+
{{DOMxRef("RTCDataChannel")}}
+
+ +
+
{{DOMxRef("RTCDtlsTransport")}}
+
+ +
+
{{DOMxRef("RTCDTMFSender")}}
+
+ +
+
{{DOMxRef("RTCIceTransport")}}
+
+ +
+
{{DOMxRef("RTCPeerConnection")}}
+
+ +
+
{{DOMxRef("ScriptProcessorNode")}}
+
+ +
+
{{DOMxRef("ServiceWorkerContainer")}}
+
+ +
+
{{DOMxRef("ServiceWorkerGlobalScope")}}
+
+ +
+
{{DOMxRef("SharedWorkerGlobalScope")}}
+
+ +
+
{{DOMxRef("SpeechRecognition")}}
+
+ +
+
{{DOMxRef("SpeechSynthesis")}}
+
+ +
+
{{DOMxRef("SpeechSynthesisUtterance")}}
+
+ +
+
{{DOMxRef("SVGAnimationElement")}}
+
+ +
+
{{DOMxRef("SVGElement")}}
+
+ +
+
{{DOMxRef("SVGGraphicsElement")}}
+
+ +
+
{{DOMxRef("TextTrack")}}
+
+ +
+
{{DOMxRef("TextTrackList")}}
+
+ +
+
{{DOMxRef("VideoTrackList")}}
+
+ +
+
{{DOMxRef("VisualViewport")}}
+
+ +
+
{{DOMxRef("WebSocket")}}
+
+ +
+
{{DOMxRef("Window")}}
+
+ +
+
{{DOMxRef("Worker")}}
+
+ +
+
{{DOMxRef("WorkerGlobalScope")}}
+
+ +
+
{{DOMxRef("XMLHttpRequest")}}
+
+ +
+
{{DOMxRef("XRReferenceSpace")}}
+
+ +
+
{{DOMxRef("XRSession")}}
+
+ +
+
{{DOMxRef("XRSystem")}}
+
+ +
+
-- cgit v1.2.3-54-g00ecf