W3cubDocs

/DOM

Event

The Event interface represents any event which takes place in the DOM; some are user-generated (such as mouse or keyboard events), while others are generated by APIs (such as events that indicate an animation has finished running, a video has been paused, and so forth). While events are usually triggered by such "external" sources, they can also be triggered programmatically, such as by calling the HTMLElement.click() method of an element, or by defining the event, then sending it to a specified target using EventTarget.dispatchEvent(). There are many types of events, some of which use other interfaces based on the main Event interface. Event itself contains the properties and methods which are common to all events.

Many DOM elements can be set up to accept (or "listen" for) these events, and execute code in response to process (or "handle") them. Event-handlers are usually connected (or "attached") to various HTML elements (such as <button>, <div>, <span>, etc.) using EventTarget.addEventListener(), and this generally replaces using the old HTML event handler attributes. Further, when properly added, such handlers can also be disconnected if needed using removeEventListener(). Note that one element can have several such handlers, even for the exact same event, particularly if separate, independent code modules attach them, each for its own independent purposes (for example, a webpage with an advertising-module and statistics-module both monitoring video-watching). When there are many nested elements, each with its own handler(s), event processing can become very complicated -- especially where a parent element receives the very same event as its child elements because "spatially" they overlap so the event technically occurs in both, and the processing order of such events depends on the Event bubbling and capture settings of each handler triggered.

Interfaces based on Event

Below is a list of interfaces which are based on the main Event interface, with links to their respective documentation in the MDN API reference. Note that all event interfaces have names which end in "Event".

Constructor

Event()
Creates an Event object, returning it to the caller.

Properties

Event.bubbles Read only
A Boolean indicating whether the event bubbles up through the DOM or not.
Event.cancelBubble
A historical alias to Event.stopPropagation(). Setting its value to true before returning from an event handler prevents propagation of the event.
Event.cancelable Read only
A Boolean indicating whether the event is cancelable.
Event.composed Read only
A Boolean value indicating whether or not the event can bubble across the boundary between the shadow DOM and the regular DOM.
Event.currentTarget Read only
A reference to the currently registered target for the event. This is the object to which the event is currently slated to be sent; it's possible this has been changed along the way through retargeting.
Event.deepPath
An Array of DOM Nodes through which the event has bubbled.
Event.defaultPrevented Read only
Indicates whether or not event.preventDefault() has been called on the event.
Event.eventPhase Read only
Indicates which phase of the event flow is being processed.
Event.explicitOriginalTarget Read only
The explicit original target of the event (Mozilla-specific).
Event.originalTarget Read only
The original target of the event, before any retargetings (Mozilla-specific).
Event.returnValue
A historical property introduced by Internet Explorer and eventually adopted into the DOM specification in order to ensure existing sites continue to work. Ideally, you should try to use Event.preventDefault() and Event.defaultPrevented instead, but you can use returnValue if you choose to do so.
Event.srcElement
A non-standard alias (from old versions of Microsoft Internet Explorer) for Event.target, which is starting to be supported in some other browsers for web compatibility purposes.
Event.target Read only
A reference to the target to which the event was originally dispatched.
Event.timeStamp Read only
The time at which the event was created (in milliseconds). By specification, this value is time since epoch, but in reality browsers' definitions vary; in addition, work is underway to change this to be a DOMHighResTimeStamp instead.
Event.type Read only
The name of the event (case-insensitive).
Event.isTrusted Read only
Indicates whether or not the event was initiated by the browser (after a user click for instance) or by a script (using an event creation method, like event.initEvent).

Obsolete properties

Event.scoped Read only
A Boolean indicating whether the given event will bubble across through the shadow root into the standard DOM. This property has been renamed to composed.

Methods

Event.createEvent()

Creates a new event, which must then be initialized by calling its initEvent() method.

Event.composedPath()
Returns the event’s path (objects on which listeners will be invoked). This does not include nodes in shadow trees if the shadow root was created with its ShadowRoot.mode closed.
Event.initEvent()
Initializes the value of an Event created. If the event has already being dispatched, this method does nothing.
Event.preventDefault()
Cancels the event (if it is cancelable).
Event.stopImmediatePropagation()
For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance)
Event.stopPropagation()
Stops the propagation of events further along in the DOM.

Obsolete methods

Event.getPreventDefault()
Non-standard. Returns the value of Event.defaultPrevented. Use Event.defaultPrevented instead.
Event.preventBubble() Obsolete since Gecko 24
Prevents the event from bubbling. Obsolete, use event.stopPropagation instead.
Event.preventCapture() Obsolete since Gecko 24
Obsolete, use event.stopPropagation instead.

Specifications

Specification Status Comment
DOM
The definition of 'Event' in that specification.
Living Standard

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support Yes Yes Yes Yes Yes Yes
Event() constructor 15 Yes 11 No 11.6 6
bubbles Yes ? ? ? Yes ?
cancelBubble Yes
Yes
Starting with Chrome 58 and Opera 45, setting this property to false does nothing, as per spec discussion.
Yes 53
53
Prior to Firefox 53, this property was defined on the UIEvent interface. See bug 1298970 for more details.
Yes Yes
Yes
Starting with Chrome 58 and Opera 45, setting this property to false does nothing, as per spec discussion.
Yes
cancelable Yes ? ? ? Yes ?
composed 53 ? 52 ? 40 ?
composedPath 53
53
50 — 53
Uses the non-standard name: deepPath
No 52 No 40
40
37 — 40
Uses the non-standard name: deepPath
10
createEvent No ? ? ? No ?
currentTarget Yes Yes Yes 9
9
6 — 9
On Internet Explorer 6 through 8, the event model is different. Event listeners are attached with the non-standard EventTarget.attachEvent method. In this model, there is no equivalent to event.currentTarget and this is the global object. One solution to emulate the event.currentTarget feature is to wrap your handler in a function calling the handler using Function.prototype.call with the element as a first argument. This way, this will be the expected value.
Yes 10
defaultPrevented 18 Yes 6 9 11 5
eventPhase 45 ? ? ? 32 ?
explicitOriginalTarget No No Yes No No No
getPreventDefault No ? ? — 59
? — 59
See bug 691151.
? No ?
initEvent Yes Yes 17
17
? — 17
Before Firefox 17, a call to this method after the dispatching of the event raised an exception instead of doing nothing.
Yes Yes Yes
isTrusted 46
46
Starting with Chrome 53 and Opera 40, untrusted events do not invoke the default action.
Yes Yes No
No
In Internet Explorer, all events are trusted except those that are created with the createEvent() method.
33
33
Starting with Chrome 53 and Opera 40, untrusted events do not invoke the default action.
No
originalTarget No No Yes No No No
preventBubble No ? ? — 24 ? No ?
preventCapture No ? ? — 24 ? No ?
preventDefault Yes Yes Yes 9 Yes Yes
returnValue Yes Yes 63 6 Yes Yes
srcElement Yes Yes 62 Yes Yes Yes
stopImmediatePropagation 6 Yes 10 9 15 5
stopPropagation Yes Yes Yes 9 Yes Yes
target Yes Yes Yes Yes Yes Yes
timeStamp 49
49
Starting with Chrome 49, Firefox 54 and Opera 36, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
Yes Yes
Yes
Starting with Chrome 49, Firefox 54 and Opera 36, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
Yes
Yes
Starting with Chrome 49, Firefox 54 and Opera 36, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
36
36
Starting with Chrome 49, Firefox 54 and Opera 36, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
Yes
type 45 ? ? ? 32 ?
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support Yes Yes Yes Yes Yes Yes ?
Event() constructor Yes 18 Yes 14 11.6 6 ?
bubbles Yes Yes ? ? Yes ? ?
cancelBubble Yes
Yes
Starting with Chrome 58 and Opera 45, setting this property to false does nothing, as per spec discussion.
Yes
Yes
Starting with Chrome 58 and Opera 45, setting this property to false does nothing, as per spec discussion.
Yes 53
53
Prior to Firefox 53, this property was defined on the UIEvent interface. See bug 1298970 for more details.
Yes
Yes
Starting with Chrome 58 and Opera 45, setting this property to false does nothing, as per spec discussion.
Yes ?
cancelable Yes Yes ? ? Yes ? ?
composed 53 53 ? 52 40 ? ?
composedPath 53
53
50 — 53
Uses the non-standard name: deepPath
53
53
50 — 53
Uses the non-standard name: deepPath
No 52 40
40
37 — 40
Uses the non-standard name: deepPath
10 ?
createEvent No No ? ? No ? ?
currentTarget Yes Yes Yes Yes Yes 10 ?
defaultPrevented Yes 18 Yes 6 11 5 ?
eventPhase 45 45 ? ? 32 ? ?
explicitOriginalTarget No No No Yes No No ?
getPreventDefault No No ? ? — 59
? — 59
See bug 691151.
No ? ?
initEvent Yes Yes Yes 17
17
? — 17
Before Firefox 17, a call to this method after the dispatching of the event raised an exception instead of doing nothing.
Yes Yes ?
isTrusted 46
46
Starting with version 53, untrusted events do not invoke the default action.
46
46
Starting with Chrome 53 and Opera 40, untrusted events do not invoke the default action.
Yes Yes 33
33
Starting with Chrome 53 and Opera 40, untrusted events do not invoke the default action.
No ?
originalTarget No No No Yes No No ?
preventBubble No No ? ? — 24 No ? ?
preventCapture No No ? ? — 24 No ? ?
preventDefault Yes Yes Yes Yes Yes Yes ?
returnValue Yes Yes Yes 63 Yes Yes ?
srcElement Yes Yes Yes 62 Yes Yes ?
stopImmediatePropagation Yes 18 Yes 10 15 5 ?
stopPropagation Yes Yes Yes Yes Yes Yes ?
target Yes Yes Yes Yes Yes Yes ?
timeStamp 49
49
Starting with version 49, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
49
49
Starting with Chrome 49, Firefox 54 and Opera 36, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
Yes Yes
Yes
Starting with Chrome 49, Firefox 54 and Opera 36, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
36
36
Starting with Chrome 49, Firefox 54 and Opera 36, this property returns DOMHighResTimeStamp instead of DOMTimeStamp.
Yes ?
type 45 45 ? ? 32 ? ?

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Event