Nedtelling til dato
NyttEn live nedtelling til en hvilken som helst dato — dager, timer, minutter og sekunder, med delbar lenke.
Runs entirely in your browser. Nothing is uploaded.
A live countdown to any date
Pick a date, name the moment, and watch the wait shrink in real time: this free countdown timer shows the days, hours, minutes and seconds until any date and time, updating every second. Count down to Christmas, New Year, a wedding, a birthday, an exam, a product launch, a vacation, retirement — anything with a date attached.
Your countdown auto-saves in the browser, so it is still ticking when you come back tomorrow. The subtitle does the mental math for you: the full date spelled out, the wait expressed in weeks and days, and the "sleeps" count for impatient kids. One-click presets for Christmas and New Year target the next occurrence automatically, so the answer to "how many days until Christmas?" is always current.
Share your countdown with a link
Hit Copy share link and your countdown's name, date and time are packed into the URL itself. Anyone who opens it sees the same live countdown clock — no account, no app, and nothing stored on a server, so the link never expires. Drop it in the family group chat for the holiday countdown, pin it in the team channel before launch day, or text it as the wedding save-the-date.
Want it in your calendar too? Add to calendar (.ics) downloads a standard calendar file — generated right in your browser — that imports into Google Calendar, Outlook and Apple Calendar with the event pre-filled. Services like countdownmail.com charge for shareable countdown emails; this gives you a permanent shareable link for free.
Full-screen mode for events and classrooms
One click on Fullscreen turns the page into a giant full screen countdown timer — ideal for projecting at New Year's Eve parties, school events, retirement send-offs, exam study sessions and stream overlays. The digits scale to your display and keep ticking every second; Esc brings you back.
When the moment arrives, the timer celebrates: confetti rains down, the title flips to "it's here!", and the clock automatically switches to counting up — so right after midnight it shows how long you have been in the new year. Browser-extension countdown timers and clock widgets can't match the full-screen impact of a dedicated browser tab scaled to a projector.
How it compares to timeanddate.com and tickcounter.com
The two most-searched countdown tools are timeanddate.com and tickcounter.com. Timeanddate.com's countdown is accurate and well-known but it surrounds the timer with dense navigation, sidebars and ads — not ideal for projecting or sharing as a clean page. Tickcounter.com offers embeddable widgets but requires account creation before you can share a countdown link, and its free tier includes branding.
This countdown timer is different in three ways: the shareable link requires zero sign-up, the full-screen mode fills the entire display with nothing but the countdown, and the .ics calendar download is built in. It also adds the confetti moment and automatic count-up after zero — details the bigger sites don't bother with because they're optimising for widget sales rather than the person counting down to something that matters to them.
Free, accurate, and nothing to install
The math is done properly: leap years, month lengths and daylight-saving shifts are handled by real date arithmetic, not naive day-counting, and everything is computed in your local time zone. Unlike widget services that store your countdown on their servers (and watermark or paywall the embed), this countdown is yours — in your browser and in your link.
It loads in an instant, runs offline once open, and never asks you to register. For related jobs, UtiloKit has companions: Date Difference Calculator for business-day math between two dates, Stopwatch & Timer for minute-style timers, and Time Zone Converter for coordinating the moment across cities.
The psychology of deadlines and visible countdowns
Parkinson's Law — "work expands to fill the time available" — was stated by Cyril Northcote Parkinson in 1955, but it describes something every procrastinator already knows: without a firm end point, tasks drift. A visible countdown attacks that drift directly. When the clock is in view, the shrinking number acts as a constant, low-level pressure that keeps the goal salient without requiring willpower to remember it. Psychologists call this the Zeigarnik effect: the brain attaches disproportionate attention to unfinished tasks, and a countdown is a persistent signal that the task is not yet done. Removing the countdown from view does not remove the effect — it just makes the pressure unconscious, which is less useful.
Research on deadline pressure and cognitive performance shows an inverted U-curve: moderate time pressure sharpens focus and raises output quality, while very tight pressure degrades recall and creative problem-solving. The practical implication is that an artificial deadline set comfortably ahead of the real one — a technique recommended in time-management literature as "buffer scheduling" — exploits the motivating side of the curve without triggering the anxiety that sits on the steep end. Counting down to a self-imposed intermediary date rather than the final submission date is one way to engineer that buffer deliberately. Habit-formation research supports the same idea: people who set specific implementation intentions ("I will finish X by date Y") convert goals into actions at a measurably higher rate than people who hold the goal abstractly, and a countdown externalises that intention into the environment.
For teams, a shared countdown link serves the same function as a sprint deadline in Agile time-boxing: everyone can see the same clock, so coordination costs drop and the urgency is objective rather than felt differently by each person. Classroom teachers have long used visible timers for the same reason — a countdown displayed during an exam or timed activity reduces questions about how much time remains and lets students self-regulate their pacing without interrupting the room.
How browsers keep time — and why it drifts
Most countdown timers on the web are built around setInterval, which asks the JavaScript runtime to call a function every N milliseconds. The problem is that setInterval and setTimeout are not real-time guarantees — they are requests that sit in the browser's event loop. If the JavaScript thread is busy (parsing a script, handling a layout change, running an animation), the callback fires late. Over a one-second interval, a few milliseconds of lateness per tick accumulates into visible clock drift over tens of minutes. A timer that fires its callback 10 ms late on average will be ten seconds slow after sixteen minutes.
The correct approach — and the one used here — is to use performance.now() or Date.now() on every tick to measure wall-clock time directly, and compute the remaining duration from the difference between the target timestamp and the current time. This way the display is always accurate to within one tick, regardless of how late any individual callback fires. The UI still updates once per second, but each update reads the real clock instead of trusting the interval to be punctual. A second compounding issue is background tab throttling: Chrome, Firefox and Safari all throttle timers in inactive tabs — Chrome reduces the minimum interval to 1,000 ms (1 Hz) in a background tab, meaning a timer relying on a 100 ms interval will fire at most once per second while hidden. Because this tool anchors every tick to the absolute target timestamp rather than an accumulated count, throttling a background tab does not cause it to lag; when you bring the tab back to the front, the display is still correct.
Long-duration countdowns — weeks or months — face daylight-saving transitions as an additional source of error. Naive implementations that add 86,400 seconds per day will be one hour wrong on the morning after a clock change. Correct implementations keep the target as an absolute epoch value (milliseconds since 1 January 1970 UTC) and re-derive the remaining time from the current epoch on every tick. Calendar dates supplied by the user are converted to epochs using the browser's local time zone at the moment of entry, so the "midnight" in your countdown really is midnight in your city, including through any future clock shifts before the event arrives.
Countdown timers vs stopwatches: which motivates better?
A countdown timer and a stopwatch both measure time, but they activate different motivational systems. Behavioural economists describe two broad motivational frames: loss aversion and achievement motivation. Countdowns tap loss aversion — time is visibly disappearing, and the brain treats that loss as a cost to be avoided. Stopwatches tap achievement motivation — elapsed time accumulates as a record of effort, and the brain reads that as progress to be proud of. Neither frame is universally superior; the better tool depends on the type of task.
For goal-oriented tasks with a fixed endpoint — finishing a report, sitting an exam, completing a sprint — countdowns outperform stopwatches because the shrinking number keeps the deadline concrete and immediate. The sense of approaching completion is itself a motivator: the closer you are to the goal, the faster you work, a phenomenon called the goal-gradient effect, first documented in rats by Clark Hull in 1932 and consistently replicated in human studies including frequent-flyer programs and loyalty card punch cards. A countdown timer makes the gradient visible. For exploration-oriented tasks — a practice session, a creative warm-up, open-ended research — a stopwatch is often better because there is no natural finish line and a countdown would impose artificial urgency that disrupts the exploratory mindset.
The hybrid case is time-boxing, where you commit to working on something for a fixed period without a fixed deliverable. The Pomodoro Technique (25 minutes of focused work, 5 minutes of rest, developed by Francesco Cirillo in the late 1980s) uses a countdown for each work block and a countdown for each break. The countdown provides urgency during the work block and a clear permission-to-rest at the end. Research on time-boxing in knowledge work consistently shows it reduces decision fatigue about when to stop, a significant source of unproductive time in open-ended white-collar work. Use UtiloKit's Stopwatch & Timer for Pomodoro and fixed-duration blocks; use this Countdown Timer when the endpoint is a specific calendar date and time.
A brief history of the countdown
The dramatic countdown to zero was invented for cinema. Fritz Lang's 1929 science-fiction film Frau im Mond (Woman in the Moon) needed a way to build tension before a rocket launch, so Lang and screenwriter Thea von Harbou introduced the idea of counting backwards from ten to zero. The technique worked so well that when Germany's V-2 rocket program began in the early 1940s, engineers adopted the same convention for their actual launch sequences — partly because the film had made the countdown culturally legible, and partly because it gave ground crews a shared synchronisation signal. NASA inherited the practice when it recruited many of the same German rocket engineers after World War II, and the T-minus format — with its built-in holds and pauses — became the global standard for spaceflight. The first publicly televised NASA countdown was for the Mercury-Redstone 3 mission in 1961, and the format has not changed in seventy years.
New Year's Eve countdowns entered popular culture through broadcast television. In New York, the ball drop at Times Square has been marking the new year since 1907, but the national countdown synchronised around Dick Clark's New Year's Rockin' Eve, which first aired on ABC on 31 December 1972. Clark hosted the broadcast until 2012, making the ten-second countdown before midnight one of the most-watched shared countdowns in American television history. The Olympic Games adopted elaborate opening-ceremony countdowns in the late twentieth century, and major sporting events use digital shot clocks and game clocks that descend to zero as a near-universal language of urgency — the shot clock in basketball (introduced in the NBA in 1954 to prevent stalling) is arguably the most consequential countdown in commercial sport, having transformed a slow, deliberate game into a fast, high-scoring one by simply making time visible and scarce.
Digital countdowns moved online with the early web. The Y2K countdown — the approach of 1 January 2000 — was among the first viral internet countdowns, with dozens of sites hosting live tickers from 1997 onward. Holiday countdowns (days until Christmas, days until summer) became standard content on portal sites, and the format has since spread to every domain where anticipation can be monetised or organised: product launches, sports events, subscription renewals, SSL certificate expirations, and election nights. The persistence of the format across a century of technology — film reel to broadcast television to the web — reflects something genuine about how humans respond to a visible, shrinking number: anticipation is sharpened, coordination is simplified, and the moment of arrival feels earned.
Frequently asked questions
How do I count down the days to a specific date?
Click the date field, pick your target date and optionally a time, then give the event a name — the timer starts immediately, showing the exact days, hours, minutes and seconds remaining, updated live every second. The subtitle does the extra math: the full calendar date spelled out, the wait in weeks and days, and a sleeps count. Everything saves automatically in your browser so the countdown is still running when you return.
How many days until Christmas?
Click the Christmas preset and the countdown targets December 25 at midnight in your local time zone, updating every second. After Christmas passes it rolls over to the following year automatically, so the answer is always current. Sites like timeanddate.com show a Christmas countdown too, but it sits behind several clicks and ad blocks. Here the preset loads in one tap with no distractions — and the full-screen mode makes it displayable on any TV or projector.
What does "sleeps until" mean?
"Sleeps" counts the nights you will go to sleep before the event arrives. It's typically the number of days remaining plus one, because tonight counts as a sleep even if the event is early tomorrow morning. The term is popular with children in the UK, Australia and Ireland asking "how many sleeps until Christmas?" This countdown shows the sleeps count alongside the precise days-hours-minutes-seconds figure so parents and kids both get the answer they want.
How do I make a countdown I can share with friends?
Press "Copy share link" and the event name, date and time are encoded directly into the URL, so anyone who opens the link sees the same live countdown without needing an account, an app or anything installed. The link never expires because there is no server storing your data — the countdown lives entirely in the URL. Drop it in a family group chat for the holiday countdown, pin it in Slack before a product launch, or paste it into a wedding save-the-date message. Tools like tickcounter.com require you to create an account before sharing; this one doesn't.
Can I use the countdown timer in full screen?
Yes — the Fullscreen button scales the countdown to fill the entire display, making it perfect for projecting at New Year's Eve parties, classroom exams, retirement send-offs, stream overlays and wedding receptions. The digits resize cleanly to any screen size, the timer keeps updating every second, and Esc exits full-screen without losing your countdown. Unlike browser-extension timers or PowerPoint clocks, this works on any device with a modern browser and requires no download or install.
Does the countdown account for time zones?
The countdown targets the date and time in your local time zone, and the share link carries the same wall-clock time — right for birthdays, weddings and most events where "midnight" means local midnight. For a global product launch at one universal instant (say 9 AM Pacific, which is 5 PM UTC), state the time in UTC and have each viewer convert; UtiloKit's Time Zone Converter does that in seconds. The date arithmetic also handles daylight-saving transitions automatically.
How are the days between two dates calculated?
The tool converts both moments to Unix timestamps and divides the difference by 86,400 seconds per day, then handles the remainder as hours, minutes and seconds. This approach is correct for leap years, months of different lengths and daylight-saving clock shifts, unlike naive day counters that assume every day is exactly 86,400 seconds. The subtitle also expresses the wait in weeks-and-days and shows the sleeps count, giving three different ways to understand the same gap.
What happens when the countdown reaches zero?
Confetti fills the screen, the title switches to a celebration message, and the timer automatically flips to counting up — showing how long it has been since the event moment. So if you set a New Year countdown and then leave the page open, it counts the minutes and hours into the new year. You can also deliberately set a past date to track elapsed time: days since you quit smoking, since the company was founded, or since a personal milestone.
Can I count down to a birthday that repeats every year?
Set the next occurrence of the birthday and the countdown runs until it arrives. After the birthday passes, the timer switches to counting up from that moment. For the next year, update the target date with one click. The Christmas and New Year presets handle their own recurrence automatically — they always target the next occurrence — but personal birthdays need a manual date update once a year. Save the share link in your notes so you only have to rebuild it once.
Is there a free countdown timer without ads or sign-up?
This one. The timer area is completely free of ads, there is no account requirement and no watermark. Because the countdown lives in the URL rather than on a server, there is nothing to pay for and no data to sell. Many popular countdown sites — countdownkings.com, online-stopwatch.com and others — show banner or interstitial ads around their timer. This page keeps the display clean so a fullscreen countdown actually looks good on a projector or big screen.
Can I add the event to my calendar?
Click "Add to calendar (.ics)" and the page generates a standard iCalendar file in your browser — no server involved — that imports into Google Calendar, Outlook and Apple Calendar with your event name, date and time pre-filled. The .ics file is a one-time download; it doesn't stay in sync with the countdown afterward. For ongoing reminders leading up to the date, set the Google Calendar event to repeat weekly reminders alongside this live countdown.
What's the difference between a countdown timer and a stopwatch?
A countdown timer starts from a future target and ticks toward zero; a stopwatch starts at zero and measures how long something takes. This tool counts down to a specific calendar date and time — days, hours, minutes and seconds. For minute-style timers (a 10-minute egg timer or a 25-minute Pomodoro block) use UtiloKit's Stopwatch & Timer tool. For measuring reaction time or race splits, use the Stopwatch. For calculating the number of days between two past dates, the Date Difference Calculator is the right tool.
Can I use it as a classroom or event countdown?
Yes — set the date, press Fullscreen, and project it from any laptop, tablet or phone. The display scales to the screen and updates every second with no user interaction needed. The share link lets every student open the same countdown on their own device. For exam countdowns where you want a fixed duration from now rather than a calendar date, pair this with UtiloKit's Stopwatch & Timer. Unlike dedicated classroom timer apps, this requires no install and works on any browser including Chromebooks.
How do I count down to an exam, wedding, vacation or retirement?
Type the event name, pick the date and optionally the time, and the countdown starts. The name appears as the page title, so the browser tab shows "Countdown to My Retirement" while you work. Copy the share link to keep it on your phone and send it to people sharing the anticipation. Download the .ics file so the date is also in your calendar. The countdown auto-saves in local browser storage, so it's waiting for you whenever you open the page again.
Related tools
Se alle verktøyHabit Tracker
Track daily habits with a 30-day grid, streaks and completion stats — saves in your browser.
Reading Speed Test
Test your words-per-minute reading speed with comprehension check and percentile rank.
Days Until
Live countdown to Christmas, your birthday, any date — days, hours, minutes ticking in real time. Shareable URL.
Signer PDF
Tegn eller skriv en signatur, plasser den på PDF-en din, og last ned — alt i nettleseren din.
Stoppeklokke og timer
Nøyaktig nettbasert stoppeklokke med runder og en nedtellingstimer med forhåndsinnstillinger.
Tilfeldig velger
Velg et tilfeldig navn, tall, myntkast eller terningkast — rettferdig og øyeblikkelig.