Web/API/PushEvent/PushEvent

From Get docs

This is an experimental technologyCheck the Browser compatibility table carefully before using this in production.


The PushEvent() constructor creates a new PushEvent object. Note that the this constructor is exposed only to a service worker context.

Syntax

var myPushEvent = new PushEvent(type, eventInitDict);

Parameters

type
A DOMString defining the type of PushEvent. This can be push or pushsubscriptionchange.
eventInitDict Optional
An options object containing any initialization data you want to populate the PushEvent object with. The options are:
data
  • The data you want the PushEvent to contain, if any. When the constructor is invoked, the PushEvent.data property of the resulting object will be set to a new PushMessageData object containing bytes extracted from the eventInitDict data member.

Example

var dataInit = {
  data : 'Some sample text'
}

var myPushEvent = new PushEvent('push', dataInit);

myPushEvent.data.text(); // should return 'Some sample text'

Browser Compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

PushEvent() constructor

Experimental'

Chrome

Full support 42

Edge Full support 16

Disabled'

Full support 16

Disabled'

Disabled' From version 16: this feature is behind the Enable service workers preference. Full support 17


Firefox Full support 44

Notes'

Full support 44

Notes'

Notes' Extended Support Releases (ESR) before Firefox 78 ESR do not support service workers and the Push API.

IE

No support No

Opera

Full support 37

Safari

No support No

WebView Android

No support No

Chrome Android

Full support 42

Firefox Android Full support 44


Full support 44


Full support 48

Notes'

Notes' Push enabled by default.

Opera Android

Full support 37

Safari iOS

No support No

Samsung Internet Android

Full support 4.0

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
See implementation notes.'
See implementation notes.
User must explicitly enable this feature.'
User must explicitly enable this feature.


See also