0
Help. What am I doing wrong here? I'm trying to make the progress bar load incrementally up to 100.
2 Réponses
+ 7
The DOM's not ready (the [JS] tab runs in <head>, before <body> loads). Wrap in onload():
window.onload=function(){
// your code
}
+ 1
thank you, Kirk!