The PushEvent()
constructor creates a new PushEvent
object. Note that this constructor is exposed only to a service worker context.
On this page
PushEvent: PushEvent() constructor
Syntax
js
new PushEvent(type)
new PushEvent(type, options)
Parameters
-
type
-
A string with the name of the event. It is case-sensitive and browsers set it to
push
orpushsubscriptionchange
. options
Optional-
An object that, in addition of the properties defined in
ExtendableEvent()
, can have the following properties:-
data
-
The data you want the
PushEvent
to contain, if any. When the constructor is invoked, thePushEvent.data
property of the resulting object will be set to a newPushMessageData
object containing these bytes.
-
Return value
A new PushEvent
object.
Examples
js
const dataInit = {
data: "Some sample text",
};
const myPushEvent = new PushEvent("push", dataInit);
myPushEvent.data.text(); // should return 'Some sample text'
Specifications
Specification |
---|
Push API # dom-pushevent-constructor |
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 | |
PushEvent |
42 | 17 | 44 | No | 37 |
16Supported on macOS 13 and later |
No | 42 | 48 | 37 | 16.4 | 4.0 |
See also
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PushEvent/PushEvent