Please can someone help me with a page loader with a count down code here | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please can someone help me with a page loader with a count down code here

web

19th May 2018, 2:17 AM
michael ahianyo
michael ahianyo - avatar
2 Answers
0
var timeleft = 10; var downloadTimer = setInterval(function(){ document.getElementById("progressBar").value = 10 - --timeleft; if(timeleft <= 0) clearInterval(downloadTimer); },1000); <progress value="0" max="10" id="progressBar"></progress>
19th May 2018, 2:46 AM
Rajeeb
0
thanks
19th May 2018, 10:42 PM
michael ahianyo
michael ahianyo - avatar