Notification: click event
The click
event of the Notification
interface fires when the user clicks on displayed Notification
.
The default behavior is to move the focus to the viewport of the notification's related browsing context. If you don't want that behavior, call preventDefault()
on the event object.
Syntax
Use the event name in methods like addEventListener()
, or set an event handler property.
addEventListener("click", (event) => {});
onclick = (event) => {};
Event type
Examples
In the following example, we use an onclick handler to open a webpage in a new tab (specified by the inclusion of the '_blank'
parameter) once a notification is clicked:
notification.onclick = (event) => {
event.preventDefault();
window.open("http://www.mozilla.org", "_blank");
};
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
click_event |
20 |
14 |
22 |
No |
23 |
7 |
No |
42 |
22 |
29 |
No |
4.0 |
See also