
#Countdown timer javascript codepen professional
The countdown timers are also used in professional contexts like sales and marketing to set up deadlines. The countdown timers are used to set up communication with a user to inform about an event such as how long have someone been doing an event or how long will it take a user to finish an event. The countdown timer is used for multiple purposes. It contains the time in hours, minutes, and seconds. It counts down from a certain date/time to indicate the beginning or end of an event. Var start = document.A countdown timer is a digital clock that runs virtually on web pages. Var minute_text = cd.minutes + (cd.minutes > 1 ? ' minutes' : ' minute') Įl.innerHTML = minute_text + ' ' + cd.seconds + ' ' + second_text + '' You should get it once per function call at the beginning and cache it.Īt that point, you function would look more or less like this function countdown(element, minutes, seconds) Įlement = 'countdown1' ? cd = countdown1 : cd = countdown2 So they really shouldn't be there.Ī performance issue, you may want to know about is that you are doing a DOM lookup for the counters EVERY second. That variable will be set to the click event on the event handler (and again, is not being used) and will be undefined on setInterval. Then, you have a timer variable as a parameter for the click handler and setInterval but never used. Get rid of one of them (preferably get rid of the inline version). Secondly you are setting the click handler BOTH inline and within the script. The minutes and seconds are probably best passed as parameters and interval should be defined within the scope of function.

That way, every time the function is called, a new set of variables is created for its execution. So first thing is to get rid of the three variables at the top and recreate them WITHIN the scope of the function. If you want a reusable timer, you can't hard set the variables it will use. There are few things you're doing that prevent you from expanding the code. Var start = document.getElementById('start') Var minute_text = minutes + (minutes > 1 ? ' minutes' : ' minute') Įl.innerHTML = minute_text + ' ' + seconds + ' ' + second_text + '' Var el = document.getElementById(element) Is there anyone who can easily change this script to a functioning one for two timers?

#Countdown timer javascript codepen how to
Here's the script I'm using, but I don't know how to duplicate the timer and let each timer work independently. timer1 lasts 10 secs and timer2 lasts 20). The timers need to have a start button and both have different timings (i.e. Currently working on a project that requires two timers on one page.
