Nuestro conocimiento compartido. Nuestro tesoro compartido. Wikipedia.
ShareCode
Permalink: http://www.treeweb.es/u/974/ 01/02/2011

ShareCode

1 window.addEventListener('load', function(e) {2  3  window.notifications = window.navigator.mozNotification || window.webkitNotifications || window.navigator.webkitNotifications;4  5  6  7 }, true);8 9 function send_temporized() {10  setTimeout(function() {11  notifications.createNotification('http://www.treeweb.es/plantillas/treeweb/estilo.css/twitter.png', 'titulo', 'Mensaje').show();12  }, 3000);13 }14 15 function send_notification() {16  var n = notifications.createNotification('titulo', 'Mensaje', 'http://www.treeweb.es/plantillas/treeweb/estilo.css/twitter.png');17  n.onclick = function(e) {18  alert('clicked!');19  };20  n.show();21  22  setTimeout(function() { n.close(); }, 3000);23 }24 25 function activate_notifications() {26  if (notifications.checkPermission()) {27  notifications.requestPermission();28  } else {29  alert('las notificaciones ya estaban activadas');30  }31  32 }
Enlace
El enlace para compartir es: