var pierwotnyTytul = document.title; var nowyTytul = "⚠️ You've got message!"; function migotajCoSekunde() { setInterval(function () { if (document.hidden) { document.title = document.title === nowyTytul ? pierwotnyTytul : nowyTytul; } }, 1000); } document.addEventListener("visibilitychange", function () { if (document.hidden) { document.title = nowyTytul; } else { document.title = pierwotnyTytul; } }); migotajCoSekunde();