+ 8
How can I create a timer in html.
5 ответов
+ 16
With the setInterval() function:
var x = 0;
setInterval(function(){
x++;
document.write(x);
},1000);
+ 5
I want to make a digital countdown timer
+ 4
have you tried looking at any of the existing countdown timers to get an idea as there are several here to study ?
+ 3
What type of timer are you referring to: an egg timer, a stop watch, a counter to display the number of folloers,,, there are many types of timers.
+ 3
I think it's not possible without Javascript.