A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/PushEvent/PushEvent below:

PushEvent: PushEvent() constructor - Web APIs

PushEvent: PushEvent() constructor

Baseline 2023

Newly available

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

Note: This feature is only available in Service Workers.

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

Syntax
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 or pushsubscriptionchange.

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, the PushEvent.data property of the resulting object will be set to a new PushMessageData object containing these bytes.

Return value

A new PushEvent object.

Examples
const dataInit = {
  data: "Some sample text",
};

const myPushEvent = new PushEvent("push", dataInit);

myPushEvent.data.text(); // should return 'Some sample text'
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4