Notification: click event
Note: This feature is available in Web Workers
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
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
A generic Event
.
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 = function(event) {
event.preventDefault(); // prevent the browser from focusing the Notification's tab
window.open('http://www.mozilla.org', '_blank');
}
Specifications
No specification found
No specification data found for api.Notification.click_event
.
Check for problems with this page or contribute a missing spec_url
to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
Browser compatibility
No compatibility data found for api.Notification.click_event
.
Check for problems with this page or contribute missing data to mdn/browser-compat-data.