Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9240439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:11:25+00:00 2026-06-18T08:11:25+00:00

function countdown() { seconds = 1000; delay = delay-seconds; conversion = Math.ceil(delay / seconds

  • 0
function countdown()
{
    seconds = 1000;
    delay = delay-seconds;
    conversion = Math.ceil(delay / seconds );
    document.getElementById('timer').innerHTML =  conversion + ":seconds until alarm goes off";
    t3 = setTimeout("countdown()",1000);

    if(conversion == 0)
    {
        alert('Wake UP!!!');
        DontDoIt();
    }
}

This code displays the timer in seconds. I want to be able to show the time in minutes and seconds if the time is greater than 60.

I want to be able to do this with hours, minutes, and seconds

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T08:11:26+00:00Added an answer on June 18, 2026 at 8:11 am

    This should solve the problem for you
    If needed it displays hours, minutes (with a leading zero) and seconds

    function countdown() {
        seconds = 1000;
        delay = delay - seconds
        secs = Math.ceil(delay / seconds);
        var hrs = Math.floor(secs / 3600);
        var mins = Math.floor((secs - (hrs * 3600)) / 60);
        secs -= ((hrs * 3600) + (mins * 60));
    
        document.getElementById('timer').innerHTML = ((hrs>0) ? hrs + ':' : '') + ((mins>0) ? ((mins>9) ? mins : '0'+mins) + ':' : '') + ((secs>9) ? secs : '0'+secs) + " until alarm goes off";
        t3 = setTimeout("countdown()", 1000);
        if (delay == 0) {
            alert('Wake UP!!!');
            DontDoIt();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Why wont it countdown? <script language=JavaScript TYPE=text/javascript> var container = document.getElementById('dl'); var seconds =
Hello i want when my countdown end it should give out as: document.getElementById(remain).innerHTML =
I have the following script: Timer=0; function countdown(auctionid){ var auctions; var divs; Timer=Timer+1; if((Timer%10==0)||(Timer==1)){
I have a countdown timer with days, hours, minutes and seconds. I want to
I'm trying to create a simple countdown timer that will play an alarm sound
I want to use a javascript countdown function similar to this http://jsfiddle.net/Apnu2/6/ when a
I'm trying to show a simple countdown from 2 hours like so: $(function ()
I was trying to make a JS countdown script that adjusts both the seconds
I'm trying to use this code to countdown from 10 seconds, then show a
I am using http://nithinbekal.com/2009/javascript-how-to-create-a-simple-countdown-timer/ But when I run it in firefox I get the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.