CustomEvent

The CustomEvent interface represents events initialized by an application for any purpose.

Note: This feature is available in Web Workers

Constructor

CustomEvent()

Creates a CustomEvent.

Properties

This interface inherits properties from its parent, Event.

CustomEvent.detail Read only

Any data passed when initializing the event.

Methods

This interface inherits methods from its parent, Event.

CustomEvent.initCustomEvent()

Initializes a CustomEvent object. If the event has already being dispatched, this method does nothing.

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
CustomEvent
15
12
6
9
11
5
≤37
18
6
11
5
1.0
CustomEvent
15
12
11
No
11.6
6
≤37
18
14
12
6
1.0
detail
15
12
11
No
11.6
5
≤37
Yes
14
Yes
5
Yes
initCustomEvent
15
12
6
9
11
5
≤37
18
6
11
5
7.0
worker_support
43
17
48
No
30
12
43
43
48
30
12
4.0

Firing from privileged code to non-privileged code

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 Object 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.

See also

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent