this won't make the taskbar button flash in changing colours, but the title will blink on and off until they move the mouse. This should work cross platform, and even if they just have it in a different tab.
function newExcitingAlerts() {
var oldTitle = window.titledocument.title;
var msg = "New!";
var timeoutId = setTimeout(function(setInterval(function() {
window.title document.title = window.title document.title == msg ? ' ' : msg;
}, 1000);
window.onMouseMove window.onmousemove = function() {
clearTimeout(timeoutId)clearInterval(timeoutId);
window.title document.title = oldTitle;
window.onMouseMove window.onmousemove = null;
};
}
