Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3
Try this JS: window.onload=function() { var arr,a,inter; arr=document.getElementsByTagName("progress"); var a=arr[0]; function loading() { a.value+=5; if(a.value==100) { clearInterval(inter); document.write("success"); } } inter=setInterval(loading,100); }
24th Dec 2018, 1:55 AM
Nick
Nick - avatar