Change style of div | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Change style of div

Is there any way to make the last line of the code below to random a background color for all the div created from the "for loop"? var x=Math.random()*3; var random=Math.floor(x); var list=new Array["red","blue","green"]; var bgcolor=list[random]; for(i=0;i<10;i++){ var ele=document.createElement("div")} ele.style.width="50px"; ele.style.height="50px" ele.style.background=bgcolor;

27th Nov 2016, 12:55 PM
Foxtrot Pipe
Foxtrot Pipe - avatar
0 Answers