The onclick
property of the Notification
interface specifies an event listener to receive click
events. These events occur when the user clicks on a displayed Notification
.
Notification.onclick = function(event) { ... };
The default behavior is to move the focus to the viewport of the notification's related browsing context. If you don't want that behaviour, call preventDefault()
on the event object.
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 = function(event) { event.preventDefault(); // prevent the browser from focusing the Notification's tab window.open('http://www.mozilla.org', '_blank'); }
Specification | Status | Comment |
---|---|---|
Notifications API The definition of 'onclick' in that specification. | Living Standard | Living standard. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | ? | No | No | ? | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | Yes | ? | No | ? | No | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Notification/onclick