I needed a tactic that could catch the attention of users when they receive a new message, while the browser is minimized. I could not find a way for the taskbar icon to blink, but I found an alternative that still fills the need. @HariKrishnan gave a link that led to a googling steam that made me discover Web Notifications . You can find a very simple tutorial here .
Hooray!
In the future, I added tut here, as this is just a two-step process ..
Step 1
Ask user to enable webkitNotifications (Same with html5 geography)
function askPermission(){ webkitNotifications.requestPermission(testNotification); }
Step 2
Create Notification
function testNotification(){ var notification = webkitNotifications.createNotification('IMAGE','TITLE','BODY'); notification.show(); }
( Note. Several notifications will be flocked)
Jo E. source share