-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsampleNotification.html
More file actions
51 lines (48 loc) · 1.67 KB
/
sampleNotification.html
File metadata and controls
51 lines (48 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<button onclick="notifyMe()">Notify Me!</button>
<script>
window.setInterval(function(){
/// call your function here
if(new Date().getMinutes() == 59){
notifyMe(new Date().getMinutes());
}
}, 15000);
function notifyMe(num) {
console.log(new Date().getMinutes());
// 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! It's "+num);
}
// Otherwise, we need to ask the user for permission
else if (Notification.permission !== 'denied') {
Notification.requestPermission(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 any more.
}
Notification.requestPermission();function spawnNotification(theBody,theIcon,theTitle) {
var options = {
body: theBody,
icon: theIcon
}
var n = new Notification(theTitle,options);
}
</script>
</body>
</html>