What do you think of this web app I’m making?(bigtimer.net)

almost 6 years ago from Koos Looijesteijn, Everything design and web at ForTomorrow

  • Taylor Cooney, almost 6 years ago

    Cool. Try and extend the time in the HTML title tag so that a user can see the time remaining without having to switch back to the tab.

    1 point
    • Derek KnoxDerek Knox, almost 6 years ago

      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);

      1 point