diff --git a/files/ru/mozilla/firefox/releases/32/index.md b/files/ru/mozilla/firefox/releases/32/index.md index dce6d1b3169acd..5fd25f14f7aaea 100644 --- a/files/ru/mozilla/firefox/releases/32/index.md +++ b/files/ru/mozilla/firefox/releases/32/index.md @@ -45,7 +45,7 @@ slug: Mozilla/Firefox/Releases/32 ### Интерфейсы/APIs/DOM -- Реализованы свойство {{domxref("navigator.languages")}} и событие {{event("languagechange")}} ([Firefox bug 889335](https://bugzil.la/889335)). +- Реализованы свойство {{domxref("navigator.languages")}} и событие {{domxref("Window.languagechange_event", "languagechange")}} ([Firefox bug 889335](https://bugzil.la/889335)). - В методы {{domxref("KeyboardEvent.getModifierState")}}() и {{domxref("MouseEvent.getModifierState")}}() добавлена поддержка виртуального модификатора `Accel` ([Firefox bug 1009388](https://bugzil.la/1009388)). - Добавлена экспериментальная реализация свойства {{domxref("KeyboardEvent.code")}}: она отключена в Release сборках ([Firefox bug 865649](https://bugzil.la/865649)). diff --git a/files/ru/web/api/htmlbodyelement/index.md b/files/ru/web/api/htmlbodyelement/index.md index e060e69303b91c..739fe0b3686806 100644 --- a/files/ru/web/api/htmlbodyelement/index.md +++ b/files/ru/web/api/htmlbodyelement/index.md @@ -41,7 +41,7 @@ _Не имеет специфичных обработчиков событий; - {{domxref("WindowEventHandlers.onhashchange")}} - : Это {{event("Event_handlers", "event handler")}} представляющее собой код который будет вызван когда событие {{event("hashchange")}} вызвано. - {{domxref("WindowEventHandlers.onlanguagechange")}} {{experimental_inline}} - - : Это {{event("Event_handlers", "event handler")}} представляющее собой код который будет вызван когда событие {{event("languagechange")}} вызвано. + - : Это {{event("Event_handlers", "event handler")}} представляющее собой код, который будет вызван при появлении события {{domxref("Window.languagechange_event", "languagechange")}}. - {{domxref("WindowEventHandlers.onmessage")}} - : Это {{event("Event_handlers", "event handler")}} представляющее собой код который будет вызван когда событие {{event("message")}} вызвано. - {{domxref("WindowEventHandlers.onoffline")}} diff --git a/files/ru/web/api/window/index.md b/files/ru/web/api/window/index.md index 99e3e315e914f7..6b2322d964c318 100644 --- a/files/ru/web/api/window/index.md +++ b/files/ru/web/api/window/index.md @@ -330,7 +330,7 @@ _Этот интерфейс наследует методы от интерфе - {{domxref("GlobalEventHandlers.onkeyup")}} - : Свойство обработчика событий для события {{event("keyup")}} в окне. - {{domxref("WindowEventHandlers.onlanguagechange")}} - - : Свойство обработчика событий для события {{event("languagechange")}} в окне. + - : Свойство обработчика события {{domxref("Window.languagechange_event", "languagechange")}} в окне. - {{domxref("GlobalEventHandlers.onload")}} - : Свойство обработчика событий для загрузки окна. - {{domxref("WindowEventHandlers.onmessage")}} diff --git a/files/ru/web/events/index.md b/files/ru/web/events/index.md index 9cd6ab3fc89cc9..4c42dc2e4e926a 100644 --- a/files/ru/web/events/index.md +++ b/files/ru/web/events/index.md @@ -349,195 +349,195 @@ slug: Web/Events Эти события определены в официальных веб-спецификациях и должны быть общими для всех браузеров. Каждое событие перечисляется вместе с интерфейсом, представляющим объект, отправленный получателям события (так что вы можете найти информацию о том, какие данные предоставляются с каждым событием), а также ссылку на спецификацию или спецификации, которые определяют событие. -| Имя события | Тип события | Спецификация | Происходит когда... | -| ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| {{Event("abort")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-abort) | The loading of a resource has been aborted. | -| [`abort`]() | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-abort) | Progression has been terminated (not due to an error). | -| [`abort`](/ru/docs/Web/Reference/Events/abort_indexedDB) | {{DOMxRef("Event")}} | [IndexedDB](http://www.w3.org/TR/IndexedDB/#database-interface) | A transaction has been aborted. | -| {{Event("afterprint")}} | {{DOMxRef("Event")}} | [HTML5](http://www.w3.org/TR/html5/webappapis.html#printing) | The associated document has started printing or the print preview has been closed. | -| {{Event("animationcancel")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) has aborted. | -| {{Event("animationend")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) has completed. | -| {{Event("animationiteration")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) is repeated. | -| {{Event("animationstart")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) has started. | -| {{Event("appinstalled")}} | {{DOMxRef("Event")}} | [Web App Manifest](/ru/docs/Web/Manifest) | A web application is successfully installed as a [progressive web app](/en-US/Apps/Progressive). | -| {{Event("audioprocess")}} | {{DOMxRef("AudioProcessingEvent")}} {{Deprecated_Inline}} | [Web Audio API](https://www.w3.org/TR/webaudio/#AudioProcessingEvent) | The input buffer of a {{DOMxRef("ScriptProcessorNode")}} is ready to be processed. | -| {{Event("audioend")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The user agent has finished capturing audio for speech recognition. | -| {{Event("audiostart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The user agent has started to capture audio for speech recognition. | -| {{Event("beforeprint")}} | {{DOMxRef("Event")}} | [HTML5](http://www.w3.org/TR/html5/webappapis.html#printing) | The associated document is about to be printed or previewed for printing. | -| {{Event("beforeunload")}} | {{DOMxRef("BeforeUnloadEvent")}} | [HTML5](http://www.w3.org/TR/html5/browsers.html#unloading-documents) | The window, the document and its resources are about to be unloaded. | -| {{Event("beginEvent")}} | {{DOMxRef("TimeEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | A [SMIL](/ru/docs/SVG/SVG_animation_with_SMIL) animation element begins. | -| [`blocked`](/ru/docs/Web/Reference/Events/blocked_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | An open connection to a database is blocking a `versionchange` transaction on the same database. | -| {{Event("blur")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-blur) | An element has lost focus (does not bubble). | -| {{Event("boundary")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The spoken utterance reaches a word or sentence boundary | -| {{Event("canplay")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-canplay) | The user agent can play the media, but estimates that not enough data has been loaded to play the media up to its end without having to stop for further buffering of content. | -| {{Event("canplaythrough")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-canplaythrough) | 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](http://www.w3.org/TR/DOM-Level-2-Events/events.html), [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#event-input-change) | 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](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The battery begins or stops charging. | -| {{Event("chargingtimechange")}} | {{DOMxRef("Event")}} | [Battery status](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The `chargingTime` attribute has been updated. | -| {{Event("click")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-click) | A pointing device button has been pressed and released on an element. | -| [`close`](/ru/docs/Web/Reference/Events/close_websocket) | {{DOMxRef("Event")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A WebSocket connection has been closed. | -| [`complete`](/ru/docs/Web/Reference/Events/complete_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#transaction) | A transaction successfully completed. | -| {{Event("complete")}} | {{DOMxRef("OfflineAudioCompletionEvent")}} {{Deprecated_Inline}} | [Web Audio API](https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-section) | The rendering of an {{DOMxRef("OfflineAudioContext")}} is terminated. | -| {{Event("compositionend")}} | {{DOMxRef("CompositionEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-compositionend) | The composition of a passage of text has been completed or canceled. | -| {{Event("compositionstart")}} | {{DOMxRef("CompositionEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-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")}} | {{DOMxRef("CompositionEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-compositionupdate) | A character is added to a passage of text being composed. | -| {{Event("contextmenu")}} | {{DOMxRef("MouseEvent")}} | [HTML5](https://html.spec.whatwg.org/multipage/forms.html#context-menus) | The right button of the mouse is clicked (before the context menu is displayed). | -| {{Event("copy")}} | {{DOMxRef("ClipboardEvent")}} {{Experimental_Inline}} | [Clipboard](http://www.w3.org/TR/clipboard-apis/#copy-event) | The text selection has been added to the clipboard. | -| {{Event("cut")}} | {{DOMxRef("ClipboardEvent")}} {{Experimental_Inline}} | [Clipboard](http://www.w3.org/TR/clipboard-apis/#cut-event) | The text selection has been removed from the document and added to the clipboard. | -| {{Event("dblclick")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-dblclick) | A pointing device button is clicked twice on an element. | -| {{Event("devicechange")}} | {{DOMxRef("Event")}} | [Media Capture and Streams](https://w3c.github.io/mediacapture-main/) | A media device such as a camera, microphone, or speaker is connected or removed from the system. | -| {{Event("devicemotion")}} | {{DOMxRef("DeviceMotionEvent")}} {{Experimental_Inline}} | [Device Orientation Events](http://dev.w3.org/geo/api/spec-source-orientation.html) | Fresh data is available from a motion sensor. | -| {{Event("deviceorientation")}} | {{DOMxRef("DeviceOrientationEvent")}} {{Experimental_Inline}} | [Device Orientation Events](http://dev.w3.org/geo/api/spec-source-orientation.html) | Fresh data is available from an orientation sensor. | -| {{Event("dischargingtimechange")}} | {{DOMxRef("Event")}} | [Battery status](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The `dischargingTime` attribute has been updated. | -| `DOMActivate` {{Deprecated_Inline}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMActivate) | A button, link or state changing element is activated (use {{Event("click")}} instead). | -| [`DOMAttributeNameChanged`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationNameEvent")}} | [DOM L3](http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/#event-type-DOMAttributeNameChanged) Removed | The name of an attribute changed (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| [`DOMAttrModified`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMAttrModified) | The value of an attribute has been modified (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| [`DOMCharacterDataModified`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMCharacterDataModified) | A text or another [CharacterData](/ru/docs/DOM/CharacterData) has changed (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| {{Event("DOMContentLoaded")}} | {{DOMxRef("Event")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-end.html#the-end) | The document has finished loading (but not its dependent resources). | -| [`DOMElementNameChanged`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationNameEvent")}} | [DOM L3](http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/#event-type-DOMElementNameChanged) Removed | The name of an element changed (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| `DOMFocusIn` {{Deprecated_Inline}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMFocusIn) | An element has received focus (use {{Event("focus")}} or {{Event("focusin")}} instead). | -| `DOMFocusOut` {{Deprecated_Inline}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMFocusOut) | An element has lost focus (use {{Event("blur")}} or {{Event("focusout")}} instead). | -| [`DOMNodeInserted`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeInserted) | A node has been added as a child of another node (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| [`DOMNodeInsertedIntoDocument`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeInsertedIntoDocument) | A node has been inserted into the document (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| [`DOMNodeRemoved`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeRemoved) | A node has been removed from its parent node (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| [`DOMNodeRemovedFromDocument`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeRemovedFromDocument) | A node has been removed from the document (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| [`DOMSubtreeModified`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMSubtreeModified) | A change happened in the document (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | -| {{Event("drag")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-drag) | An element or text selection is being dragged (every 350ms). | -| {{Event("dragend")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragend) | A drag operation is being ended (by releasing a mouse button or hitting the escape key). | -| {{Event("dragenter")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragenter) | A dragged element or text selection enters a valid drop target. | -| {{Event("dragleave")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragleave) | A dragged element or text selection leaves a valid drop target. | -| {{Event("dragover")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragover) | An element or text selection is being dragged over a valid drop target (every 350ms). | -| {{Event("dragstart")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragstart) | The user starts dragging an element or text selection. | -| {{Event("drop")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-drop) | An element is dropped on a valid drop target. | -| {{Event("durationchange")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-durationchange) | The `duration` attribute has been updated. | -| {{Event("emptied")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-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()`](/ru/docs/XPCOM_Interface_Reference/NsIDOMHTMLMediaElement) method is called to reload it. | -| {{Event("end_(SpeechRecognition)","end")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The speech recognition service has disconnected. | -| {{Event("end_(SpeechSynthesis)","end")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The utterance has finished being spoken. | -| {{Event("ended")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-ended) | Playback has stopped because the end of the media was reached. | -| {{Event("ended_(Web_Audio)", "ended")}} | {{DOMxRef("Event")}} | [Web Audio API](https://www.w3.org/TR/webaudio/) | Playback has stopped because the end of the media was reached. | -| {{Event("endEvent")}} | {{DOMxRef("TimeEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | A [SMIL](/ru/docs/SVG/SVG_animation_with_SMIL) animation element ends. | -| {{Event("error")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-error) | A resource failed to load. | -| {{Event("error")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-error) | Progression has failed. | -| {{Event("error")}} | {{DOMxRef("Event")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A WebSocket connection has been closed with prejudice (some data couldn't be sent for example). | -| {{Event("error")}} | {{DOMxRef("Event")}} | [Server Sent Events](http://dev.w3.org/html5/eventsource/) | An event source connection has been failed. | -| {{Event("error")}} | {{DOMxRef("Event")}} | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | A request caused an error and failed. | -| {{Event("error_(SpeechRecognitionError)","error")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | A speech recognition error occurs. | -| {{Event("error_(SpeechSynthesisError)","error")}} | {{DOMxRef("SpeechSynthesisErrorEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | An error occurs that prevents the utterance from being successfully spoken. | -| {{Event("focus")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-focus) | An element has received focus (does not bubble). | -| {{Event("focusin")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-focusIn) | An element is about to receive focus (bubbles). | -| {{Event("focusout")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-focusout) | An element is about to lose focus (bubbles). | -| {{Event("fullscreenchange")}} | {{DOMxRef("Event")}} | [Full Screen](https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html#api) | An element was turned to fullscreen mode or back to normal mode. | -| {{Event("fullscreenerror")}} | {{DOMxRef("Event")}} | [Full Screen](https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html#api) | It was impossible to switch to fullscreen mode for technical reasons or because the permission was denied. | -| {{Event("gamepadconnected")}} | {{DOMxRef("GamepadEvent")}} {{Experimental_Inline}} | [Gamepad](http://www.w3.org/TR/gamepad/#the-gamepadconnected-event) | A gamepad has been connected. | -| {{domxref("Window.gamepaddisconnected_event", "gamepaddisconnected")}} | {{DOMxRef("GamepadEvent")}} {{Experimental_Inline}} | [Gamepad](http://www.w3.org/TR/gamepad/#the-gamepaddisconnected-event) | A gamepad has been disconnected. | -| {{Event("gotpointercapture")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-gotpointercapture-event) | Element receives pointer capture. | -| {{Event("hashchange")}} | {{DOMxRef("HashChangeEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-hashchange) | The fragment identifier of the URL has changed (the part of the URL after the #). | -| {{Event("lostpointercapture")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-lostpointercapture-event) | Element lost pointer capture. | -| {{Event("input")}} | {{DOMxRef("Event")}} | [HTML5](http://www.w3.org/TR/html5/forms.html#common-event-behaviors) | The value of an element changes or the content of an element with the attribute [contenteditable](/ru/docs/DOM/Element.contentEditable) is modified. | -| {{Event("invalid")}} | {{DOMxRef("Event")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#constraint-validation) | A submittable element has been checked and doesn't satisfy its constraints. | -| {{Event("keydown")}} | {{DOMxRef("KeyboardEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-keydown) | A key is pressed down. | -| {{Event("keypress")}} {{Deprecated_Inline}} | {{DOMxRef("KeyboardEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-keypress) | A key is pressed down and that key normally produces a character value (use input instead). | -| {{Event("keyup")}} | {{DOMxRef("KeyboardEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-keyup) | A key is released. | -| {{Event("languagechange")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [HTML 5.1](https://www.w3.org/TR/html51/#dom-navigator-languages) | The user's preferred languages have changed. | -| {{Event("levelchange")}} | {{DOMxRef("Event")}} | [Battery status](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The `level` attribute has been updated. | -| {{Event("load")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-load) | A resource and its dependent resources have finished loading. | -| [`load`]() | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-load) | Progression has been successful. | -| {{Event("loadeddata")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-loadeddata) | The first frame of the media has finished loading. | -| {{Event("loadedmetadata")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-loadedmetadata) | The metadata has been loaded. | -| {{Event("loadend")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-loadend) | Progress has stopped (after "error", "abort" or "load" have been dispatched). | -| {{Event("loadstart")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-loadstart) | Progress has begun. | -| {{Event("mark")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The spoken utterance reaches a named SSML "mark" tag. | -| [`message`](/ru/docs/Web/Reference/Events/message_websocket) | {{DOMxRef("MessageEvent")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A message is received through a WebSocket. | -| [`message`](/ru/docs/Web/Reference/Events/message_webworker) | {{DOMxRef("MessageEvent")}} | [Web Workers](http://www.w3.org/TR/workers/#communicating-with-a-dedicated-worker) | A message is received from a Web Worker. | -| [`message`](/ru/docs/Web/Reference/Events/message_webmessaging) | {{DOMxRef("MessageEvent")}} | [Web Messaging](http://www.w3.org/TR/webmessaging/) | A message is received from a child (i)frame or a parent window. | -| [`message`](/ru/docs/Web/Reference/Events/message_serversentevents) | {{DOMxRef("MessageEvent")}} | [Server Sent Events](http://dev.w3.org/html5/eventsource/) | A message is received through an event source. | -| {{Event("messageerror")}} | {{DOMxRef("MessageEvent")}} | {{DOMxRef("MessagePort")}}, [Web Workers](/ru/docs/Web/API/Web_Workers_API), [Broadcast Channel](/ru/docs/Web/API/Broadcast_Channel_API), {{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](/ru/docs/Web/API/Service_Worker_API) | 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](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mousedown) | A pointing device button (usually a mouse) is pressed on an element. | -| {{Event("mouseenter")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseenter) | A pointing device is moved onto the element that has the listener attached. | -| {{Event("mouseleave")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseleave) | A pointing device is moved off the element that has the listener attached. | -| {{Event("mousemove")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mousemove) | A pointing device is moved over an element. | -| {{Event("mouseout")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseout) | 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](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseover) | 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](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseup) | A pointing device button is released over an element. | -| {{Event("nomatch")}} {{Experimental_Inline}} | {{DOMxRef("SpeechRecognitionEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The speech recognition service returns a final result with no significant recognition. | -| {{Event("notificationclick")}} | {{DOMxRef("NotificationEvent")}} {{Experimental_Inline}} | [Notifications API](https://notifications.spec.whatwg.org/#dom-serviceworkerglobalscope-onnotificationclick) | A system notification spawned by {{DOMxRef("ServiceWorkerRegistration.showNotification()")}} has been clicked. | -| {{Event("offline")}} | {{DOMxRef("Event")}} | [HTML5 offline](http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html#event-offline) | The browser has lost access to the network. | -| {{Event("online")}} | {{DOMxRef("Event")}} | [HTML5 offline](http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html#event-online) | The browser has gained access to the network (but particular websites might be unreachable). | -| [`open`](/ru/docs/Web/Reference/Events/open_websocket) | {{DOMxRef("Event")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A WebSocket connection has been established. | -| [`open`](/ru/docs/Web/Reference/Events/open_serversentevents) | {{DOMxRef("Event")}} | [Server Sent Events](http://dev.w3.org/html5/eventsource/) | An event source connection has been established. | -| {{Event("orientationchange")}} | {{DOMxRef("Event")}} | [Screen Orientation](http://www.w3.org/TR/screen-orientation/) | The orientation of the device (portrait/landscape) has changed | -| {{Event("pagehide")}} | {{DOMxRef("PageTransitionEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-pagehide) | A session history entry is being traversed from. | -| {{Event("pageshow")}} | {{DOMxRef("PageTransitionEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-pageshow) | A session history entry is being traversed to. | -| {{Event("paste")}} | {{DOMxRef("ClipboardEvent")}} {{Experimental_Inline}} | [Clipboard](http://www.w3.org/TR/clipboard-apis/#paste-event) | Data has been transferred from the system clipboard to the document. | -| {{Event("pause")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-pause) | Playback has been paused. | -| {{Event("pause_(SpeechSynthesis)", "pause")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The utterance is paused part way through. | -| {{Event("pointercancel")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointercancel-event) | The pointer is unlikely to produce any more events. | -| {{Event("pointerdown")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerdown-event) | The pointer enters the active buttons state. | -| {{Event("pointerenter")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerenter-event) | Pointing device is moved inside the hit-testing boundary. | -| {{Event("pointerleave")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerleave-event) | Pointing device is moved out of the hit-testing boundary. | -| {{Event("pointerlockchange")}} | {{DOMxRef("Event")}} | [Pointer Lock](http://www.w3.org/TR/pointerlock/#pointerlockchange-and-pointerlockerror-events) | The pointer was locked or released. | -| {{Event("pointerlockerror")}} | {{DOMxRef("Event")}} | [Pointer Lock](http://www.w3.org/TR/pointerlock/#pointerlockchange-and-pointerlockerror-events) | It was impossible to lock the pointer for technical reasons or because the permission was denied. | -| {{Event("pointermove")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointermove-event) | The pointer changed coordinates. | -| {{Event("pointerout")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerout-event) | The pointing device moved out of hit-testing boundary or leaves detectable hover range. | -| {{Event("pointerover")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerover-event) | The pointing device is moved into the hit-testing boundary. | -| {{Event("pointerup")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerup-event) | The pointer leaves the active buttons state. | -| {{Event("play")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-play) | Playback has begun. | -| {{Event("playing")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-playing) | Playback is ready to start after having been paused or delayed due to lack of data. | -| {{Event("popstate")}} | {{DOMxRef("PopStateEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-popstate) | A session history entry is being navigated to (in certain cases). | -| {{Event("progress")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-progress) | In progress. | -| {{Event("push")}} | {{DOMxRef("PushEvent")}} {{Experimental_Inline}} | [Push API](https://w3c.github.io/push-api/) | A [Service Worker](/ru/docs/Web/API/Service_Worker_API) has received a push message. | -| {{Event("pushsubscriptionchange")}} | {{DOMxRef("PushEvent")}} {{Experimental_Inline}} | [Push API](https://w3c.github.io/push-api/) | A [PushSubscription](/ru/docs/Web/API/PushSubscription) has expired. | -| {{Event("ratechange")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-ratechange) | The playback rate has changed. | -| {{Event("readystatechange")}} | {{DOMxRef("Event")}} | HTML5 and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-readystatechange) | The readyState attribute of a document has changed. | -| {{Event("repeatEvent")}} | {{DOMxRef("TimeEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | A [SMIL](/ru/docs/SVG/SVG_animation_with_SMIL) animation element is repeated. | -| {{Event("reset")}} | {{DOMxRef("Event")}} | [DOM L2](http://www.w3.org/TR/DOM-Level-2-Events/events.html), [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#form-submission-0#resetting-a-form) | A form is reset. | -| {{Event("resize")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-resize) | The document view has been resized. | -| {{Event("resourcetimingbufferfull")}} | {{DOMxRef("Performance")}} | [Resource Timing](https://w3c.github.io/resource-timing/#dom-performance-onresourcetimingbufferfull) | The browser's resource timing buffer is full. | -| {{Event("result")}} {{Experimental_Inline}} | {{DOMxRef("SpeechRecognitionEvent")}} {{Experimental_Inline}} | [Web Speech API](https://wicg.github.io/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}} | [Web Speech API](https://wicg.github.io/speech-api/) | A paused utterance is resumed. | -| {{Event("scroll")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-scroll) | The document view or an element has been scrolled. | -| {{Event("seeked")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-seeked) | A _seek_ operation completed. | -| {{Event("seeking")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-seeking) | A _seek_ operation began. | -| {{Event("select")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-select) | Some text is being selected. | -| {{Event("selectstart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Selection API](https://w3c.github.io/selection-api/) | A selection just started. | -| {{Event("selectionchange")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Selection API](https://w3c.github.io/selection-api/) | The selection in the document has been changed. | -| {{Event("show")}} | {{DOMxRef("MouseEvent")}} | [HTML5](http://www.w3.org/TR/html5/interactive-elements.html#context-menus) | A contextmenu event was fired on/bubbled to an element that has a [contextmenu](/ru/docs/DOM/element.contextmenu) attribute | -| {{Event("slotchange")}} | {{DOMxRef("Event")}} | [DOM](https://dom.spec.whatwg.org/) | The node contents of a {{DOMxRef("HTMLSlotElement")}} ({{htmlelement("slot")}}) have changed. | -| {{Event("soundend")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Any sound — recognisable speech or not — has stopped being detected. | -| {{Event("soundstart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Any sound — recognisable speech or not — has been detected. | -| {{Event("speechend")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Speech recognised by the speech recognition service has stopped being detected. | -| {{Event("speechstart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Sound that is recognised by the speech recognition service as speech has been detected. | -| {{Event("stalled")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-stalled) | The user agent is trying to fetch media data, but data is unexpectedly not forthcoming. | -| {{Event("start_(SpeechRecognition)","start")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/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")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The utterance has begun to be spoken. | -| {{Event("storage")}} | {{DOMxRef("StorageEvent")}} | [Web Storage](http://www.w3.org/TR/webstorage/#the-storage-event) | A storage area ([localStorage](/ru/docs/DOM/Storage#localStorage) or [sessionStorage](/ru/docs/DOM/Storage#sessionStorage)) has changed. | -| {{Event("submit")}} | {{DOMxRef("Event")}} | [DOM L2](http://www.w3.org/TR/DOM-Level-2-Events/events.html), [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#form-submission-algorithm) | A form is submitted. | -| [`success`](/ru/docs/Web/Reference/Events/success_indexedDB) | {{DOMxRef("Event")}} | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | A request successfully completed. | -| {{Event("suspend")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-suspend) | Media data loading has been suspended. | -| {{Event("SVGAbort")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | Page loading has been stopped before the [SVG](/ru/docs/SVG) was loaded. | -| {{Event("SVGError")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An error has occurred before the [SVG](/ru/docs/SVG) was loaded. | -| {{Event("SVGLoad")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document has been loaded and parsed. | -| {{Event("SVGResize")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document is being resized. | -| {{Event("SVGScroll")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document is being scrolled. | -| {{Event("SVGUnload")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document has been removed from a window or frame. | -| {{Event("SVGZoom")}} | {{DOMxRef("SVGZoomEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document is being zoomed. | -| {{Event("timeout")}} | {{DOMxRef("ProgressEvent")}} | [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-timeout) | | -| {{Event("timeupdate")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-timeupdate) | The time indicated by the `currentTime` attribute has been updated. | -| {{Event("touchcancel")}} | {{DOMxRef("TouchEvent")}} | [Touch Events](http://www.w3.org/TR/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](http://www.w3.org/TR/touch-events/#the-touchend-event) | A touch point is removed from the touch surface. | -| {{Event("touchmove")}} | {{DOMxRef("TouchEvent")}} | [Touch Events](http://www.w3.org/TR/touch-events/#the-touchmove-event) | A touch point is moved along the touch surface. | -| {{Event("touchstart")}} | {{DOMxRef("TouchEvent")}} | [Touch Events](http://www.w3.org/TR/touch-events/#the-touchstart---------event) | A touch point is placed on the touch surface. | -| {{Event("transitionend")}} | {{DOMxRef("TransitionEvent")}} {{Experimental_Inline}} | [CSS Transitions](http://www.w3.org/TR/css3-transitions/#transition-events) | A [CSS transition](/ru/docs/CSS/CSS_transitions) has completed. | -| {{Event("unload")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-unload) | The document or a dependent resource is being unloaded. | -| [`upgradeneeded`](/ru/docs/Web/Reference/Events/upgradeneeded_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | 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}} | [Proximity Sensor](https://w3c.github.io/proximity/) | 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")}} | [Web Speech API](https://wicg.github.io/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`](/ru/docs/Web/Reference/Events/versionchange_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#database-interface) | A `versionchange` transaction completed. | -| {{Event("visibilitychange")}} | {{DOMxRef("Event")}} | [Page visibility](http://www.w3.org/TR/page-visibility/#sec-visibilitychange-event) | The content of a tab has become visible or has been hidden. | -| {{Event("volumechange")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-volumechange) | The volume has changed. | -| {{Event("waiting")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-waiting) | Playback has stopped because of a temporary lack of data. | -| {{Event("wheel")}} | {{DOMxRef("WheelEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-wheel) | A wheel button of a pointing device is rotated in any direction. | +| Имя события | Тип события | Спецификация | Происходит когда... | +| ------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| {{Event("abort")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-abort) | The loading of a resource has been aborted. | +| [`abort`]() | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-abort) | Progression has been terminated (not due to an error). | +| [`abort`](/ru/docs/Web/Reference/Events/abort_indexedDB) | {{DOMxRef("Event")}} | [IndexedDB](http://www.w3.org/TR/IndexedDB/#database-interface) | A transaction has been aborted. | +| {{Event("afterprint")}} | {{DOMxRef("Event")}} | [HTML5](http://www.w3.org/TR/html5/webappapis.html#printing) | The associated document has started printing or the print preview has been closed. | +| {{Event("animationcancel")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) has aborted. | +| {{Event("animationend")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) has completed. | +| {{Event("animationiteration")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) is repeated. | +| {{Event("animationstart")}} | {{DOMxRef("AnimationEvent")}} {{Experimental_Inline}} | [CSS Animations](http://www.w3.org/TR/css3-animations/#animation-events) | A [CSS animation](/ru/docs/CSS/CSS_animations) has started. | +| {{Event("appinstalled")}} | {{DOMxRef("Event")}} | [Web App Manifest](/ru/docs/Web/Manifest) | A web application is successfully installed as a [progressive web app](/en-US/Apps/Progressive). | +| {{Event("audioprocess")}} | {{DOMxRef("AudioProcessingEvent")}} {{Deprecated_Inline}} | [Web Audio API](https://www.w3.org/TR/webaudio/#AudioProcessingEvent) | The input buffer of a {{DOMxRef("ScriptProcessorNode")}} is ready to be processed. | +| {{Event("audioend")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The user agent has finished capturing audio for speech recognition. | +| {{Event("audiostart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The user agent has started to capture audio for speech recognition. | +| {{Event("beforeprint")}} | {{DOMxRef("Event")}} | [HTML5](http://www.w3.org/TR/html5/webappapis.html#printing) | The associated document is about to be printed or previewed for printing. | +| {{Event("beforeunload")}} | {{DOMxRef("BeforeUnloadEvent")}} | [HTML5](http://www.w3.org/TR/html5/browsers.html#unloading-documents) | The window, the document and its resources are about to be unloaded. | +| {{Event("beginEvent")}} | {{DOMxRef("TimeEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | A [SMIL](/ru/docs/SVG/SVG_animation_with_SMIL) animation element begins. | +| [`blocked`](/ru/docs/Web/Reference/Events/blocked_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | An open connection to a database is blocking a `versionchange` transaction on the same database. | +| {{Event("blur")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-blur) | An element has lost focus (does not bubble). | +| {{Event("boundary")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The spoken utterance reaches a word or sentence boundary | +| {{Event("canplay")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-canplay) | The user agent can play the media, but estimates that not enough data has been loaded to play the media up to its end without having to stop for further buffering of content. | +| {{Event("canplaythrough")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-canplaythrough) | 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](http://www.w3.org/TR/DOM-Level-2-Events/events.html), [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/common-input-element-attributes.html#event-input-change) | 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](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The battery begins or stops charging. | +| {{Event("chargingtimechange")}} | {{DOMxRef("Event")}} | [Battery status](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The `chargingTime` attribute has been updated. | +| {{Event("click")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-click) | A pointing device button has been pressed and released on an element. | +| [`close`](/ru/docs/Web/Reference/Events/close_websocket) | {{DOMxRef("Event")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A WebSocket connection has been closed. | +| [`complete`](/ru/docs/Web/Reference/Events/complete_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#transaction) | A transaction successfully completed. | +| {{Event("complete")}} | {{DOMxRef("OfflineAudioCompletionEvent")}} {{Deprecated_Inline}} | [Web Audio API](https://www.w3.org/TR/webaudio/#OfflineAudioCompletionEvent-section) | The rendering of an {{DOMxRef("OfflineAudioContext")}} is terminated. | +| {{Event("compositionend")}} | {{DOMxRef("CompositionEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-compositionend) | The composition of a passage of text has been completed or canceled. | +| {{Event("compositionstart")}} | {{DOMxRef("CompositionEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-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")}} | {{DOMxRef("CompositionEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-compositionupdate) | A character is added to a passage of text being composed. | +| {{Event("contextmenu")}} | {{DOMxRef("MouseEvent")}} | [HTML5](https://html.spec.whatwg.org/multipage/forms.html#context-menus) | The right button of the mouse is clicked (before the context menu is displayed). | +| {{Event("copy")}} | {{DOMxRef("ClipboardEvent")}} {{Experimental_Inline}} | [Clipboard](http://www.w3.org/TR/clipboard-apis/#copy-event) | The text selection has been added to the clipboard. | +| {{Event("cut")}} | {{DOMxRef("ClipboardEvent")}} {{Experimental_Inline}} | [Clipboard](http://www.w3.org/TR/clipboard-apis/#cut-event) | The text selection has been removed from the document and added to the clipboard. | +| {{Event("dblclick")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-dblclick) | A pointing device button is clicked twice on an element. | +| {{Event("devicechange")}} | {{DOMxRef("Event")}} | [Media Capture and Streams](https://w3c.github.io/mediacapture-main/) | A media device such as a camera, microphone, or speaker is connected or removed from the system. | +| {{Event("devicemotion")}} | {{DOMxRef("DeviceMotionEvent")}} {{Experimental_Inline}} | [Device Orientation Events](http://dev.w3.org/geo/api/spec-source-orientation.html) | Fresh data is available from a motion sensor. | +| {{Event("deviceorientation")}} | {{DOMxRef("DeviceOrientationEvent")}} {{Experimental_Inline}} | [Device Orientation Events](http://dev.w3.org/geo/api/spec-source-orientation.html) | Fresh data is available from an orientation sensor. | +| {{Event("dischargingtimechange")}} | {{DOMxRef("Event")}} | [Battery status](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The `dischargingTime` attribute has been updated. | +| `DOMActivate` {{Deprecated_Inline}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMActivate) | A button, link or state changing element is activated (use {{Event("click")}} instead). | +| [`DOMAttributeNameChanged`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationNameEvent")}} | [DOM L3](http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/#event-type-DOMAttributeNameChanged) Removed | The name of an attribute changed (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| [`DOMAttrModified`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMAttrModified) | The value of an attribute has been modified (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| [`DOMCharacterDataModified`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMCharacterDataModified) | A text or another [CharacterData](/ru/docs/DOM/CharacterData) has changed (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| {{Event("DOMContentLoaded")}} | {{DOMxRef("Event")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-end.html#the-end) | The document has finished loading (but not its dependent resources). | +| [`DOMElementNameChanged`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationNameEvent")}} | [DOM L3](http://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/#event-type-DOMElementNameChanged) Removed | The name of an element changed (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| `DOMFocusIn` {{Deprecated_Inline}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMFocusIn) | An element has received focus (use {{Event("focus")}} or {{Event("focusin")}} instead). | +| `DOMFocusOut` {{Deprecated_Inline}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMFocusOut) | An element has lost focus (use {{Event("blur")}} or {{Event("focusout")}} instead). | +| [`DOMNodeInserted`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeInserted) | A node has been added as a child of another node (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| [`DOMNodeInsertedIntoDocument`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeInsertedIntoDocument) | A node has been inserted into the document (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| [`DOMNodeRemoved`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeRemoved) | A node has been removed from its parent node (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| [`DOMNodeRemovedFromDocument`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMNodeRemovedFromDocument) | A node has been removed from the document (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| [`DOMSubtreeModified`](/ru/docs/DOM/Mutation_events) {{Deprecated_Inline}} | {{DOMxRef("MutationEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-DOMSubtreeModified) | A change happened in the document (use [mutation observers](/ru/docs/DOM/MutationObserver) instead). | +| {{Event("drag")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-drag) | An element or text selection is being dragged (every 350ms). | +| {{Event("dragend")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragend) | A drag operation is being ended (by releasing a mouse button or hitting the escape key). | +| {{Event("dragenter")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragenter) | A dragged element or text selection enters a valid drop target. | +| {{Event("dragleave")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragleave) | A dragged element or text selection leaves a valid drop target. | +| {{Event("dragover")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragover) | An element or text selection is being dragged over a valid drop target (every 350ms). | +| {{Event("dragstart")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-dragstart) | The user starts dragging an element or text selection. | +| {{Event("drop")}} | {{DOMxRef("DragEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#event-drop) | An element is dropped on a valid drop target. | +| {{Event("durationchange")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-durationchange) | The `duration` attribute has been updated. | +| {{Event("emptied")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-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()`](/ru/docs/XPCOM_Interface_Reference/NsIDOMHTMLMediaElement) method is called to reload it. | +| {{Event("end_(SpeechRecognition)","end")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The speech recognition service has disconnected. | +| {{Event("end_(SpeechSynthesis)","end")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The utterance has finished being spoken. | +| {{Event("ended")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-ended) | Playback has stopped because the end of the media was reached. | +| {{Event("ended_(Web_Audio)", "ended")}} | {{DOMxRef("Event")}} | [Web Audio API](https://www.w3.org/TR/webaudio/) | Playback has stopped because the end of the media was reached. | +| {{Event("endEvent")}} | {{DOMxRef("TimeEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | A [SMIL](/ru/docs/SVG/SVG_animation_with_SMIL) animation element ends. | +| {{Event("error")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-error) | A resource failed to load. | +| {{Event("error")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-error) | Progression has failed. | +| {{Event("error")}} | {{DOMxRef("Event")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A WebSocket connection has been closed with prejudice (some data couldn't be sent for example). | +| {{Event("error")}} | {{DOMxRef("Event")}} | [Server Sent Events](http://dev.w3.org/html5/eventsource/) | An event source connection has been failed. | +| {{Event("error")}} | {{DOMxRef("Event")}} | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | A request caused an error and failed. | +| {{Event("error_(SpeechRecognitionError)","error")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | A speech recognition error occurs. | +| {{Event("error_(SpeechSynthesisError)","error")}} | {{DOMxRef("SpeechSynthesisErrorEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | An error occurs that prevents the utterance from being successfully spoken. | +| {{Event("focus")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-focus) | An element has received focus (does not bubble). | +| {{Event("focusin")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-focusIn) | An element is about to receive focus (bubbles). | +| {{Event("focusout")}} | {{DOMxRef("FocusEvent")}} {{Experimental_Inline}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-focusout) | An element is about to lose focus (bubbles). | +| {{Event("fullscreenchange")}} | {{DOMxRef("Event")}} | [Full Screen](https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html#api) | An element was turned to fullscreen mode or back to normal mode. | +| {{Event("fullscreenerror")}} | {{DOMxRef("Event")}} | [Full Screen](https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html#api) | It was impossible to switch to fullscreen mode for technical reasons or because the permission was denied. | +| {{Event("gamepadconnected")}} | {{DOMxRef("GamepadEvent")}} {{Experimental_Inline}} | [Gamepad](http://www.w3.org/TR/gamepad/#the-gamepadconnected-event) | A gamepad has been connected. | +| {{domxref("Window.gamepaddisconnected_event", "gamepaddisconnected")}} | {{DOMxRef("GamepadEvent")}} {{Experimental_Inline}} | [Gamepad](http://www.w3.org/TR/gamepad/#the-gamepaddisconnected-event) | A gamepad has been disconnected. | +| {{Event("gotpointercapture")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-gotpointercapture-event) | Element receives pointer capture. | +| {{Event("hashchange")}} | {{DOMxRef("HashChangeEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-hashchange) | The fragment identifier of the URL has changed (the part of the URL after the #). | +| {{Event("lostpointercapture")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-lostpointercapture-event) | Element lost pointer capture. | +| {{Event("input")}} | {{DOMxRef("Event")}} | [HTML5](http://www.w3.org/TR/html5/forms.html#common-event-behaviors) | The value of an element changes or the content of an element with the attribute [contenteditable](/ru/docs/DOM/Element.contentEditable) is modified. | +| {{Event("invalid")}} | {{DOMxRef("Event")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#constraint-validation) | A submittable element has been checked and doesn't satisfy its constraints. | +| {{Event("keydown")}} | {{DOMxRef("KeyboardEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-keydown) | A key is pressed down. | +| {{Event("keypress")}} {{Deprecated_Inline}} | {{DOMxRef("KeyboardEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-keypress) | A key is pressed down and that key normally produces a character value (use input instead). | +| {{Event("keyup")}} | {{DOMxRef("KeyboardEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-keyup) | A key is released. | +| {{domxref("Window.languagechange_event", "languagechange")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [HTML 5.1](https://www.w3.org/TR/html51/#dom-navigator-languages) | The user's preferred languages have changed. | +| {{Event("levelchange")}} | {{DOMxRef("Event")}} | [Battery status](https://dvcs.w3.org/hg/dap/raw-file/tip/battery/Overview.html) | The `level` attribute has been updated. | +| {{Event("load")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-load) | A resource and its dependent resources have finished loading. | +| [`load`]() | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-load) | Progression has been successful. | +| {{Event("loadeddata")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-loadeddata) | The first frame of the media has finished loading. | +| {{Event("loadedmetadata")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-loadedmetadata) | The metadata has been loaded. | +| {{Event("loadend")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-loadend) | Progress has stopped (after "error", "abort" or "load" have been dispatched). | +| {{Event("loadstart")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-loadstart) | Progress has begun. | +| {{Event("mark")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The spoken utterance reaches a named SSML "mark" tag. | +| [`message`](/ru/docs/Web/Reference/Events/message_websocket) | {{DOMxRef("MessageEvent")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A message is received through a WebSocket. | +| [`message`](/ru/docs/Web/Reference/Events/message_webworker) | {{DOMxRef("MessageEvent")}} | [Web Workers](http://www.w3.org/TR/workers/#communicating-with-a-dedicated-worker) | A message is received from a Web Worker. | +| [`message`](/ru/docs/Web/Reference/Events/message_webmessaging) | {{DOMxRef("MessageEvent")}} | [Web Messaging](http://www.w3.org/TR/webmessaging/) | A message is received from a child (i)frame or a parent window. | +| [`message`](/ru/docs/Web/Reference/Events/message_serversentevents) | {{DOMxRef("MessageEvent")}} | [Server Sent Events](http://dev.w3.org/html5/eventsource/) | A message is received through an event source. | +| {{Event("messageerror")}} | {{DOMxRef("MessageEvent")}} | {{DOMxRef("MessagePort")}}, [Web Workers](/ru/docs/Web/API/Web_Workers_API), [Broadcast Channel](/ru/docs/Web/API/Broadcast_Channel_API), {{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](/ru/docs/Web/API/Service_Worker_API) | 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](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mousedown) | A pointing device button (usually a mouse) is pressed on an element. | +| {{Event("mouseenter")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseenter) | A pointing device is moved onto the element that has the listener attached. | +| {{Event("mouseleave")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseleave) | A pointing device is moved off the element that has the listener attached. | +| {{Event("mousemove")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mousemove) | A pointing device is moved over an element. | +| {{Event("mouseout")}} | {{DOMxRef("MouseEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseout) | 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](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseover) | 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](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-mouseup) | A pointing device button is released over an element. | +| {{Event("nomatch")}} {{Experimental_Inline}} | {{DOMxRef("SpeechRecognitionEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The speech recognition service returns a final result with no significant recognition. | +| {{Event("notificationclick")}} | {{DOMxRef("NotificationEvent")}} {{Experimental_Inline}} | [Notifications API](https://notifications.spec.whatwg.org/#dom-serviceworkerglobalscope-onnotificationclick) | A system notification spawned by {{DOMxRef("ServiceWorkerRegistration.showNotification()")}} has been clicked. | +| {{Event("offline")}} | {{DOMxRef("Event")}} | [HTML5 offline](http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html#event-offline) | The browser has lost access to the network. | +| {{Event("online")}} | {{DOMxRef("Event")}} | [HTML5 offline](http://www.whatwg.org/specs/web-apps/current-work/multipage/offline.html#event-online) | The browser has gained access to the network (but particular websites might be unreachable). | +| [`open`](/ru/docs/Web/Reference/Events/open_websocket) | {{DOMxRef("Event")}} | [WebSocket](http://www.w3.org/TR/websockets/) | A WebSocket connection has been established. | +| [`open`](/ru/docs/Web/Reference/Events/open_serversentevents) | {{DOMxRef("Event")}} | [Server Sent Events](http://dev.w3.org/html5/eventsource/) | An event source connection has been established. | +| {{Event("orientationchange")}} | {{DOMxRef("Event")}} | [Screen Orientation](http://www.w3.org/TR/screen-orientation/) | The orientation of the device (portrait/landscape) has changed | +| {{Event("pagehide")}} | {{DOMxRef("PageTransitionEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-pagehide) | A session history entry is being traversed from. | +| {{Event("pageshow")}} | {{DOMxRef("PageTransitionEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-pageshow) | A session history entry is being traversed to. | +| {{Event("paste")}} | {{DOMxRef("ClipboardEvent")}} {{Experimental_Inline}} | [Clipboard](http://www.w3.org/TR/clipboard-apis/#paste-event) | Data has been transferred from the system clipboard to the document. | +| {{Event("pause")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-pause) | Playback has been paused. | +| {{Event("pause_(SpeechSynthesis)", "pause")}} {{Experimental_Inline}} | {{DOMxRef("SpeechSynthesisEvent")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The utterance is paused part way through. | +| {{Event("pointercancel")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointercancel-event) | The pointer is unlikely to produce any more events. | +| {{Event("pointerdown")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerdown-event) | The pointer enters the active buttons state. | +| {{Event("pointerenter")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerenter-event) | Pointing device is moved inside the hit-testing boundary. | +| {{Event("pointerleave")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerleave-event) | Pointing device is moved out of the hit-testing boundary. | +| {{Event("pointerlockchange")}} | {{DOMxRef("Event")}} | [Pointer Lock](http://www.w3.org/TR/pointerlock/#pointerlockchange-and-pointerlockerror-events) | The pointer was locked or released. | +| {{Event("pointerlockerror")}} | {{DOMxRef("Event")}} | [Pointer Lock](http://www.w3.org/TR/pointerlock/#pointerlockchange-and-pointerlockerror-events) | It was impossible to lock the pointer for technical reasons or because the permission was denied. | +| {{Event("pointermove")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointermove-event) | The pointer changed coordinates. | +| {{Event("pointerout")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerout-event) | The pointing device moved out of hit-testing boundary or leaves detectable hover range. | +| {{Event("pointerover")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerover-event) | The pointing device is moved into the hit-testing boundary. | +| {{Event("pointerup")}} | {{DOMxRef("PointerEvent")}} | [Pointer Events](http://www.w3.org/TR/pointerevents/#the-pointerup-event) | The pointer leaves the active buttons state. | +| {{Event("play")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-play) | Playback has begun. | +| {{Event("playing")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-playing) | Playback is ready to start after having been paused or delayed due to lack of data. | +| {{Event("popstate")}} | {{DOMxRef("PopStateEvent")}} | [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#event-popstate) | A session history entry is being navigated to (in certain cases). | +| {{Event("progress")}} | {{DOMxRef("ProgressEvent")}} | [Progress](http://www.w3.org/TR/progress-events/) and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-progress) | In progress. | +| {{Event("push")}} | {{DOMxRef("PushEvent")}} {{Experimental_Inline}} | [Push API](https://w3c.github.io/push-api/) | A [Service Worker](/ru/docs/Web/API/Service_Worker_API) has received a push message. | +| {{Event("pushsubscriptionchange")}} | {{DOMxRef("PushEvent")}} {{Experimental_Inline}} | [Push API](https://w3c.github.io/push-api/) | A [PushSubscription](/ru/docs/Web/API/PushSubscription) has expired. | +| {{Event("ratechange")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-ratechange) | The playback rate has changed. | +| {{Event("readystatechange")}} | {{DOMxRef("Event")}} | HTML5 and [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-readystatechange) | The readyState attribute of a document has changed. | +| {{Event("repeatEvent")}} | {{DOMxRef("TimeEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | A [SMIL](/ru/docs/SVG/SVG_animation_with_SMIL) animation element is repeated. | +| {{Event("reset")}} | {{DOMxRef("Event")}} | [DOM L2](http://www.w3.org/TR/DOM-Level-2-Events/events.html), [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#form-submission-0#resetting-a-form) | A form is reset. | +| {{Event("resize")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-resize) | The document view has been resized. | +| {{Event("resourcetimingbufferfull")}} | {{DOMxRef("Performance")}} | [Resource Timing](https://w3c.github.io/resource-timing/#dom-performance-onresourcetimingbufferfull) | The browser's resource timing buffer is full. | +| {{Event("result")}} {{Experimental_Inline}} | {{DOMxRef("SpeechRecognitionEvent")}} {{Experimental_Inline}} | [Web Speech API](https://wicg.github.io/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}} | [Web Speech API](https://wicg.github.io/speech-api/) | A paused utterance is resumed. | +| {{Event("scroll")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-scroll) | The document view or an element has been scrolled. | +| {{Event("seeked")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-seeked) | A _seek_ operation completed. | +| {{Event("seeking")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-seeking) | A _seek_ operation began. | +| {{Event("select")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-select) | Some text is being selected. | +| {{Event("selectstart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Selection API](https://w3c.github.io/selection-api/) | A selection just started. | +| {{Event("selectionchange")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Selection API](https://w3c.github.io/selection-api/) | The selection in the document has been changed. | +| {{Event("show")}} | {{DOMxRef("MouseEvent")}} | [HTML5](http://www.w3.org/TR/html5/interactive-elements.html#context-menus) | A contextmenu event was fired on/bubbled to an element that has a [contextmenu](/ru/docs/DOM/element.contextmenu) attribute | +| {{Event("slotchange")}} | {{DOMxRef("Event")}} | [DOM](https://dom.spec.whatwg.org/) | The node contents of a {{DOMxRef("HTMLSlotElement")}} ({{htmlelement("slot")}}) have changed. | +| {{Event("soundend")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Any sound — recognisable speech or not — has stopped being detected. | +| {{Event("soundstart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Any sound — recognisable speech or not — has been detected. | +| {{Event("speechend")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Speech recognised by the speech recognition service has stopped being detected. | +| {{Event("speechstart")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/speech-api/) | Sound that is recognised by the speech recognition service as speech has been detected. | +| {{Event("stalled")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-stalled) | The user agent is trying to fetch media data, but data is unexpectedly not forthcoming. | +| {{Event("start_(SpeechRecognition)","start")}} {{Experimental_Inline}} | {{DOMxRef("Event")}} | [Web Speech API](https://wicg.github.io/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")}} | [Web Speech API](https://wicg.github.io/speech-api/) | The utterance has begun to be spoken. | +| {{Event("storage")}} | {{DOMxRef("StorageEvent")}} | [Web Storage](http://www.w3.org/TR/webstorage/#the-storage-event) | A storage area ([localStorage](/ru/docs/DOM/Storage#localStorage) or [sessionStorage](/ru/docs/DOM/Storage#sessionStorage)) has changed. | +| {{Event("submit")}} | {{DOMxRef("Event")}} | [DOM L2](http://www.w3.org/TR/DOM-Level-2-Events/events.html), [HTML5](http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#form-submission-algorithm) | A form is submitted. | +| [`success`](/ru/docs/Web/Reference/Events/success_indexedDB) | {{DOMxRef("Event")}} | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | A request successfully completed. | +| {{Event("suspend")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-suspend) | Media data loading has been suspended. | +| {{Event("SVGAbort")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | Page loading has been stopped before the [SVG](/ru/docs/SVG) was loaded. | +| {{Event("SVGError")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An error has occurred before the [SVG](/ru/docs/SVG) was loaded. | +| {{Event("SVGLoad")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document has been loaded and parsed. | +| {{Event("SVGResize")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document is being resized. | +| {{Event("SVGScroll")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document is being scrolled. | +| {{Event("SVGUnload")}} | {{DOMxRef("SVGEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document has been removed from a window or frame. | +| {{Event("SVGZoom")}} | {{DOMxRef("SVGZoomEvent")}} | [SVG](http://www.w3.org/TR/SVG/interact.html#SVGEvents) | An [SVG](/ru/docs/SVG) document is being zoomed. | +| {{Event("timeout")}} | {{DOMxRef("ProgressEvent")}} | [XMLHttpRequest](http://www.w3.org/TR/XMLHttpRequest/#event-xhr-timeout) | | +| {{Event("timeupdate")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-timeupdate) | The time indicated by the `currentTime` attribute has been updated. | +| {{Event("touchcancel")}} | {{DOMxRef("TouchEvent")}} | [Touch Events](http://www.w3.org/TR/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](http://www.w3.org/TR/touch-events/#the-touchend-event) | A touch point is removed from the touch surface. | +| {{Event("touchmove")}} | {{DOMxRef("TouchEvent")}} | [Touch Events](http://www.w3.org/TR/touch-events/#the-touchmove-event) | A touch point is moved along the touch surface. | +| {{Event("touchstart")}} | {{DOMxRef("TouchEvent")}} | [Touch Events](http://www.w3.org/TR/touch-events/#the-touchstart---------event) | A touch point is placed on the touch surface. | +| {{Event("transitionend")}} | {{DOMxRef("TransitionEvent")}} {{Experimental_Inline}} | [CSS Transitions](http://www.w3.org/TR/css3-transitions/#transition-events) | A [CSS transition](/ru/docs/CSS/CSS_transitions) has completed. | +| {{Event("unload")}} | {{DOMxRef("UIEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-unload) | The document or a dependent resource is being unloaded. | +| [`upgradeneeded`](/ru/docs/Web/Reference/Events/upgradeneeded_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#request-api) | 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}} | [Proximity Sensor](https://w3c.github.io/proximity/) | 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")}} | [Web Speech API](https://wicg.github.io/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`](/ru/docs/Web/Reference/Events/versionchange_indexedDB) | | [IndexedDB](http://www.w3.org/TR/IndexedDB/#database-interface) | A `versionchange` transaction completed. | +| {{Event("visibilitychange")}} | {{DOMxRef("Event")}} | [Page visibility](http://www.w3.org/TR/page-visibility/#sec-visibilitychange-event) | The content of a tab has become visible or has been hidden. | +| {{Event("volumechange")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-volumechange) | The volume has changed. | +| {{Event("waiting")}} | {{DOMxRef("Event")}} | [HTML5 media](http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#event-media-waiting) | Playback has stopped because of a temporary lack of data. | +| {{Event("wheel")}} | {{DOMxRef("WheelEvent")}} | [DOM L3](http://www.w3.org/TR/DOM-Level-3-Events/#event-type-wheel) | A wheel button of a pointing device is rotated in any direction. | ## Нестандартные события