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). 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.
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".
AnimationEventAudioProcessingEventBeforeInputEventBeforeUnloadEventBlobEventClipboardEventCloseEventCompositionEventCSSFontFaceLoadEventCustomEventDeviceLightEventDeviceMotionEventDeviceOrientationEventDeviceProximityEventDOMTransactionEventDragEventEditingBeforeInputEventErrorEventFetchEventFocusEventGamepadEventHashChangeEventIDBVersionChangeEventInputEventKeyboardEventMediaStreamEventMessageEventMouseEventMutationEventOfflineAudioCompletionEventPageTransitionEventPointerEventPopStateEventProgressEventRelatedEventRTCDataChannelEventRTCIdentityErrorEventRTCIdentityEventRTCPeerConnectionIceEventSensorEventStorageEventSVGEventSVGZoomEventTimeEventTouchEventTrackEventTransitionEventUIEventUserProximityEventWebGLContextEventWheelEventEvent()Event object, returning it to the caller.Event.bubbles Read only
Event.cancelBubbleEvent.stopPropagation(). Setting its value to true before returning from an event handler prevents propagation of the event.Event.cancelable Read only
Event.composed Read only
Event.currentTarget Read only
Event.deepPath
Array of DOM Nodes through which the event has bubbled.Event.defaultPrevented Read only
event.preventDefault() has been called on the event.Event.eventPhase Read only
Event.explicitOriginalTarget Read only
Event.originalTarget Read only
Event.returnValue
Event.preventDefault() and Event.defaultPrevented.Event.scoped Read only
Boolean indicating whether the given event will bubble across through the shadow root into the standard DOM. This property has been renamed to composed.Event.srcElement
Event.target.Event.target Read only
Event.timeStamp Read only
DOMHighResTimeStamp instead.Event.type Read only
Event.isTrusted Read only
Event.createEvent() Creates a new event, which must then be initialized by calling its initEvent() method.
Event.initEvent()
Event.preventBubble() Obsolete since Gecko 24
event.stopPropagation instead.Event.preventCapture() Obsolete since Gecko 24
event.stopPropagation instead.Event.preventDefault()Event.stopImmediatePropagation()Event.stopPropagation()Event.getPreventDefault()
Event.defaultPrevented. Use Event.defaultPrevented instead.| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Event' in that specification. | Living Standard |
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
cancelBubble defined on Event | ? | 53 (53)[1] | ? | ? | ? |
| Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|
| Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
cancelBubble defined on Event | ? | 53.0 (53)[1] | ? | ? | ? |
[1] Previous to Firefox 52, this property was defined on the UIEvent interface. See bug 1298970 for more details.
© 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