ReadonlybodyThe body read-only property of the Notification interface indicates the body string of the notification, as specified in the body option of the Notification() constructor.
ReadonlydataThe data read-only property of the Notification interface returns a structured clone of the notification's data, as specified in the data option of the Notification() constructor.
ReadonlydirThe dir read-only property of the Notification interface indicates the text direction of the notification, as specified in the dir option of the Notification() constructor.
ReadonlyiconThe icon read-only property of the Notification interface contains the URL of an icon to be displayed as part of the notification, as specified in the icon option of the Notification() constructor.
ReadonlylangThe lang read-only property of the Notification interface indicates the language used in the notification, as specified in the lang option of the Notification() constructor.
ReadonlyrequireThe requireInteraction read-only property of the Notification interface returns a boolean value indicating that a notification should remain active until the user clicks or dismisses it, rather than closing automatically.
ReadonlysilentThe silent read-only property of the Notification interface specifies whether the notification should be silent, i.e., no sounds or vibrations should be issued regardless of the device settings. This is controlled via the silent option of the Notification() constructor.
ReadonlytagThe tag read-only property of the Notification interface signifies an identifying tag for the notification, as specified in the tag option of the Notification() constructor.
ReadonlytitleThe title read-only property of the Notification interface indicates the title of the notification, as specified in the title parameter of the Notification() constructor.
The addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.
Optionaloptions: boolean | AddEventListenerOptionsThe addEventListener() method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target.
Optionaloptions: boolean | AddEventListenerOptionsThe close() method of the Notification interface is used to close/remove a previously displayed notification.
The dispatchEvent() method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) also apply to events dispatched manually with dispatchEvent().
The removeEventListener() method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target. The event listener to be removed is identified using a combination of the event type, the event listener function itself, and various optional options that may affect the matching process; see Matching event listeners for removal.
Optionaloptions: boolean | EventListenerOptionsThe removeEventListener() method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target. The event listener to be removed is identified using a combination of the event type, the event listener function itself, and various optional options that may affect the matching process; see Matching event listeners for removal.
Optionaloptions: boolean | EventListenerOptions
The
Notificationinterface of the Notifications API is used to configure and display desktop notifications to the user.MDN Reference