NotificationEvent: NotificationEvent() constructor - Web APIs | MDN
Syntax
js
new NotificationEvent(type, options)
Parameters
type-
A string with the name of the event. It is case-sensitive and browsers set it to
notificationclickornotificationclose. options-
An object that, in addition of the properties defined in
ExtendableEvent(), can have the following properties:notification-
A
Notificationobject to be used as the notification the event is dispatched on. actionOptional-
An action associated with the notification. It defaults to
"".
Return value
A new NotificationEvent() object.
Examples
js
const n = new Notification("Hello");
const myNotificationEvent = new NotificationEvent(type, { notification: n });
Specifications
| Specification |
|---|
| Notifications API # dom-notificationevent-notificationevent |