JSFiddle - React, Tailwind, and code Playground
by sinky
HTML
<button onclick="n()">Notification</button>
JavaScript
function n() {
title = 'Email received';
options = {
body: 'You have a total of 3 unread emails',
tag: 'preset',
icon: 'http://my-azur.de/favicon.png'
}
var notification;
Notification.requestPermission(function () {
notification = new Notification(title, options);
//notification.onclick = function () {
// location.href = 'https://my-azur.de'
//};
});
}