Answer the question
In order to leave comments, you need to log in
How to unsubscribe from notifications?
Created a subscription on the site.
function notifyMe() {
// Let's check if the browser supports notifications
if (!("Notification" in window)) {
alert("This browser does not support desktop notification");
}
// Let's check whether notification permissions have already been granted
else if (Notification.permission === "granted") {
// If it's okay let's create a notification
var notification = new Notification("Hi there!");
}
// Otherwise, we need to ask the user for permission
else if (Notification.permission !== "denied") {
Notification.requestPermission().then(function (permission) {
// If the user accepts, let's create a notification
if (permission === "granted") {
var notification = new Notification("Hi there!");
}
});
}
// At last, if the user has denied notifications, and you
// want to be respectful there is no need to bother them anymore.
}
Answer the question
In order to leave comments, you need to log in
In your question, I don't see any subscription. All you do is ask the user for permission to show notifications. And permissions for sites can only be controlled by the user.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question