Last Updated: February 25, 2016
·
941
· bhousman

WebKit Notification API

Button

<button id="button">Show Notification</button>

WebKit Notification API

document.querySelector('#button').addEventListener('click', function() {
  if (window.webkitNotifications.checkPermission() == 0) {
    notification = window.webkitNotifications.createNotification('icon.png', 'Notification Title Goes Here', 'Notification Content Goes Here');
    notification.show();
  } else {
    window.webkitNotifications.requestPermission();
  }
}, false);