Published
- 1 min read
javascript countdown 10 seconds
The solution for this is noted below
javascript countdown 10 seconds
Solution
var timeleft = 10
var downloadTimer = setInterval(function () {
if (timeleft <= 0) {
clearInterval(downloadTimer)
}
document.getElementById('progressBar').value = 10 - timeleft
timeleft -= 1
}, 1000)
;<progress value='0' max='10' id='progressBar'></progress>
Try other methods by searching on the site. That is if this doesn’t work