google chrome - HTML5 Notification Chrome45 -


html notification working in firefox41, not work in chrome45.

function spawnnotification(thetitle,thebody,theicon) {   var options = {       body: thebody,       icon: theicon   }   var n = new notification(thetitle,options); } document.getelementbyid('notify').addeventlistener('click', function() {  spawnnotification('title','text','aike.jpg'); }); 


Comments

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -