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

  • Home
  • SEARCH
  • 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 8933633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:35:24+00:00 2026-06-15T09:35:24+00:00

I am trying to figure out a way to make my countdown timer restart

  • 0

I am trying to figure out a way to make my countdown timer restart at 25 all over again when it reaches 0. I dont know what I am getting wrong but it wont work.

Javascript

window.onload = function() {
   startCountDown(25, 1000, myFunction);
}

function startCountDown(i, p, f) {
   var pause = p;
   var fn = f;
   var countDownObj = document.getElementById("countDown");

   countDownObj.count = function(i) {
      //write out count
      countDownObj.innerHTML = i;
      if (i == 0) {
      //execute function
      fn();
      //stop
      return;
   }
   setTimeout(function() {
      // repeat
      countDownObj.count(i - 1);
      },
      pause  
      );
   }
   //set it going
   countDownObj.count(i);
}

function myFunction(){};
</script>

HTML

    <div id="countDown"></div>
  • 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-15T09:35:26+00:00Added an answer on June 15, 2026 at 9:35 am

    try this, timer restarts after 0

    http://jsfiddle.net/GdkAH/1/

    Full code:

    window.onload = function() {
    startCountDown(25, 1000, myFunction);
    }
    
    function startCountDown(i, p, f) {
        var pause = p;
        var fn = f;
        var countDownObj = document.getElementById("countDown");
    
        countDownObj.count = function(i) {
        //  write out count
        countDownObj.innerHTML = i;
        if (i == 0) {
        //  execute function
            fn();
            startCountDown(25, 1000, myFunction);
            //  stop
            return;
        }
        setTimeout(function() {
                //  repeat
                countDownObj.count(i - 1);
        }, pause);
    }
    //  set it going
    countDownObj.count(i);
    }
    
    function myFunction(){};
    
    ​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to figure out a way to make demos for a program I've
I'm trying to figure out how if there's a way to make a hostname
I am trying to figure out a way for somehow fetching the all the
I'm trying to figure out a way to make a Java application invisible to
Basically I'm trying to figure out a way to make http://www.mysite.com/check/google.com show the contents
I'm trying to figure out the best way to make an image rotate along
I'm trying to figure out the best way to make a file folder system
I'm trying to figure out the best way to make an AJAX call to
I always have a problem trying to figure out the best way to make
Ok so I have been trying to figure out a way to make plain

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.