Заголовок можно редактировать только так:
document.title = "blah";
Таким образом, вы можете сделать:
var origTitle = document.title;
document.title = "You have ("+x+") new messages - "+origTitle;
Чтобы сделать его миганием, вам нужно будет что-то сделать с setTimeout()
;
var origTitle = document.title;
var isChatTab = false; // Set to true/false by separate DOM event.
var animStep = true;
var animateTitle = function() {
if (isChatTab) {
if (animStep) {
document.title = "You have ("+x+") new messages - "+origTitle;
} else {
document.title = origTitle;
}
animStep = !animStep;
} else {
document.title = origTitle;
animStep = false;
}
setTimeout(animateTitle, 5000);
};
animateTitle();