The Event() constructor creates a new Event.
Syntax
new Event(typeArg[, eventInit]);
Values
typeArg- This is a
DOMStringrepresenting the name of the event. eventInitOptional-
This is an
EventInitdictionary, having the following optional fields:bubblesOptional- A
Booleanindicating whether the event bubbles. The default isfalse. cancelableOptional- A
Booleanindicating whether the event can be cancelled. The default isfalse. composedOptional- A
Booleanindicating whether the event will trigger listeners outside of a shadow root (seeEvent.composedfor more details). The default isfalse.
Example
// create a look event that bubbles up and cannot be canceled
const evt = new Event("look", {"bubbles":true, "cancelable":false});
document.dispatchEvent(evt);
// event can be dispatched from any element, not only the document
myDiv.dispatchEvent(evt);
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'Event()' in that specification. |
Living Standard | Initial definition |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
Event() constructor | Chrome Full support 15 | Edge Full support ≤18 | Firefox Full support 11 | IE No support No | Opera Full support 11.6 | Safari Full support 6 | WebView Android Full support ≤37 | Chrome Android Full support 18 | Firefox Android Full support 14 | Opera Android Full support 12 | Safari iOS Full support 6 | Samsung Internet Android Full support 1.0 |
Legend
- Full support
- Full support
- No support
- No support
