Skip to content

Instantly share code, notes, and snippets.

@aronbudinszky
Created October 3, 2013 12:14
Show Gist options
  • Save aronbudinszky/6808871 to your computer and use it in GitHub Desktop.
Save aronbudinszky/6808871 to your computer and use it in GitHub Desktop.
<script>
function notify() {
var havePermission = window.webkitNotifications.checkPermission();
if (havePermission == 0) {
// 0 is PERMISSION_ALLOWED
var notification = window.webkitNotifications.createNotification(
'http://i.stack.imgur.com/dmHl0.png',
'Chrome notification!',
'Here is the notification text'
);
notification.onclick = function () {
window.open("http://stackoverflow.com/a/13328397/1269037");
notification.close();
}
notification.show();
} else {
window.webkitNotifications.requestPermission();
}
}
</script>
<div style="width: 300px; height: 300px; background: yellow" onclick="notify()">
Cick here to notify
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment