Find the right time tool

Search by task, such as study, workout, meeting, sleep or date.

21 tools

Why browser timers stop when you close the tab

If you've ever set an online timer, switched tabs, and come back to find it behind — or an alarm that never rang — here's what's really going on, and how to avoid it.

How a browser alert reaches you Browser timing depends on an open tab or installed web app and the device permissions around it.
  1. Open the page
  2. Test sound and permissions
  3. Keep the tab or app open
  4. Use a device alarm for critical events

Background tabs get throttled

To save battery and CPU, browsers deliberately slow down inactive tabs. Timers scheduled with JavaScript (the usual setInterval approach) can get throttled or paused. A timer that counts its own ticks therefore drifts: it "loses" the time the tab spent in the background.

Closing the tab stops everything

A web page only runs while it's open. Close the tab or quit the browser and its code stops immediately — so no website can play a sound or fire an alarm after that point. This is a platform rule, not a limitation a particular site can engineer around. It's why even good tools honestly say "keep the tab open."

How to keep an online timer reliable

Try it

Set a quick timer or an alarm and switch tabs — it will recalculate from the real clock when you come back. For focus work, the 25-minute timer is a good start.

Questions

Why does my online timer pause in a background tab?
Browsers throttle inactive tabs to save battery — JavaScript timers slow down or stop firing. A timer that counts ticks can fall behind. Clockfresh avoids tick-count drift by reading the real clock, so the remaining time is recalculated when the page updates.
Can Clockfresh ring after I close its page?
No. Once the page is fully closed, its code no longer runs — Clockfresh cannot schedule an alert from that closed page. Keep the tab open (you can install Clockfresh and leave it running), or use your phone/OS alarm for closed-device wake-ups.
How does Clockfresh stay reliable?
It stores the target time and recomputes from the real clock. It also requests notifications and wake lock where supported, but alarms still need the page or installed web app to remain available.

Sources checked

Sources checked

Source and scope review: 5 September 2026. Automated editorial review by Codex; not a medical, coaching or kitchen test. Each source supports the limited statement next to it.

  • Browsers can throttle background pages. Recalculating remaining time after returning does not prove that a sound played while the page was suspended. developer.mozilla.org