Don't like ads? PRO users don't see any ads ;-)

Notificação para Chrome

By: vanderHobus on May 9th, 2012  |  syntax: HTML  |  size: 0.39 KB  |  hits: 28  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5.         <div><a href="" onclick="askPermission()">Show()</a></div>
  6.  
  7.         <script>
  8.                 function askPermission(){
  9.                         webkitNotifications.requestPermission(testNotification);
  10.                 }
  11.                 function testNotification(){
  12.                         var notification = webkitNotifications.createNotification('image', 'title', 'descripion');
  13.                         notification.show();
  14.                 }    
  15.         </script>        
  16. </body>
  17. </html>