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
Post a Comment