This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.
Draft
This page is not complete.
The NotificationEvent()
constructor creates a new NotificationEvent
object.
Syntax
var myNotificationEvent = new NotificationEvent(type, NotificationEventInit);
Parameters
- type
- TBD
- NotificationEventInit Optional
- A dictionary object containing a
Notification
object to be used as the notification the event is dispatched on. In later drafts of the specification, this parameter is not optional.
Example
var n = new Notification('Hello'); var init = { notification: n }; var myNotificationEvent = new NotificationEvent(type, init);
Specifications
Specification | Status | Comment |
---|---|---|
Notifications API The definition of 'NotificationEvent()' in that specification. |
Living Standard | Living standard. |
Browser Compatibility
[1] Service workers (and Push) have been disabled in the Firefox 45 and 52 Extended Support Releases (ESR.)