showing results for - "javascript click event notifications"
Erica
19 Oct 2016
1var message = new Notification("RandomString");
2message.onclick = function(){
3    alert("Random Message")
4};