CustomEvent interface represents events initialized by an application for any purpose. CustomEvent()CustomEvent.CustomEvent.detail Read only
This interface inherits properties from its parent, Event:
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.returnValueEvent.preventDefault() and Event.defaultPrevented instead, but you can use returnValue if you choose to do so.Event.srcElement
Event.target, which is starting to be supported in some other browsers for web compatibility purposes.Event.target Read only
Event.timeStamp Read only
DOMHighResTimeStamp instead.Event.type Read only
Event.isTrusted Read only
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.CustomEvent.initCustomEvent()
Initializes a CustomEvent object. If the event has already being dispatched, this method does nothing.
This interface inherits methods from its parent, Event:
Event.createEvent()
Creates a new event, which must then be initialized by calling its initEvent() method.
Event.composedPath()ShadowRoot.mode closed.Event.initEvent()
Event.preventDefault()Event.stopImmediatePropagation()Event.stopPropagation()Event.getPreventDefault()
Event.defaultPrevented. Use Event.defaultPrevented instead.Event.preventBubble() Obsolete since Gecko 24
event.stopPropagation instead.Event.preventCapture() Obsolete since Gecko 24
event.stopPropagation instead.| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'CustomEvent' in that specification. | Living Standard | Initial definition. |
| Desktop | ||||||
|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
| Basic support | Yes | Yes | 6 | 9 | 11 | 5.1 |
| Available in workers | Yes | Yes | 48 | Yes | Yes | Yes |
CustomEvent() constructor |
15 | Yes | 11 | No | 11.6 | No
|
detail |
11 | ? | 11 | No | 11.6 | No
|
initCustomEvent
|
Yes
|
Yes | 6 | 9 | 11 | 5.1 |
| 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 | ? |
| Available in workers | Yes | Yes | Yes | 48 | Yes | Yes | ? |
CustomEvent() constructor |
Yes | Yes | Yes | Yes | Yes | No
|
? |
detail |
Yes | Yes | ? | 14 | Yes | No
|
? |
initCustomEvent
|
Yes
|
Yes
|
Yes | 6 | Yes | Yes | ? |
When firing a CustomEvent from privileged code (i.e. an extension) to non-privileged code (i.e. a webpage), security issues should be considered. Firefox and other Gecko applications restrict an object created in one context from being directly used for another, which will automatically prevent security holes, but these restrictions may also prevent your code from running as expected.
While creating a CustomEvent object, you must create the object from the same window. The detail attribute of your CustomEvent will be subjected to the same restrictions. String and Array values will be readable by the content without restrictions, but custom Objects will not. While using a custom Object, you will need to define the attributes of that object that are readable from the content script using Components.utils.cloneInto().
// doc is a reference to the content document
function dispatchCustomEvent(doc) {
var eventDetail = Components.utils.cloneInto({foo: 'bar'}, doc.defaultView);
var myEvent = doc.defaultView.CustomEvent("mytype", eventDetail);
doc.dispatchEvent(myEvent);
} But one needs to keep in mind that exposing a function will allow the content script to run it with chrome privileges, which can open a security vulnerability.
© 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/CustomEvent