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);
Written by Brian
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Webkit
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#