Designer News is where the design community meets.
almost 6 years ago from Koos Looijesteijn, Everything design and web at ForTomorrow
Here's a quick sample. You can paste this in the dev console of a browser to see it in action: var i = 60; function tick() { window.document.title = 'Time: ' + i--; } setInterval(tick, 1000);
var i = 60; function tick() { window.document.title = 'Time: ' + i--; } setInterval(tick, 1000);
Nice, thanks! I’ll move this one up in the backlog!
Now playing
Here's a quick sample. You can paste this in the dev console of a browser to see it in action:
var i = 60; function tick() { window.document.title = 'Time: ' + i--; } setInterval(tick, 1000);