+ 3
Code
Have a trouble, whats wrong with this code? https://code.sololearn.com/WBWosxKe4u3G/?ref=app
5 Answers
+ 13
Try this
window.onload = function(){
var m = document.getElementsByClassName("ok");
var cl = "#444"
m[0].style.backgroundColor = cl;
}
+ 9
Actually Javascript is loading before body in your code. That's why you getting error.
+ 6
@Ranjan yeah, sorry, thanx, it really works, idk why but when i tried it didnt workš
+ 1
You maybe have to wait for the body to be loaded.
0
Ranjan's answer works for me