show/hide this revision's text 2 fixed the function so it actually works.

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;
    };
}
show/hide this revision's text 1

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.title;
    var msg = "New!";
    var timeoutId = setTimeout(function() {
        window.title = window.title == msg
                     ? ''
                     : msg;
    }, 1000);
    window.onMouseMove = function() {
        clearTimeout(timeoutId);
        window.title = oldTitle;
        window.onMouseMove = null;
    };
}