2
I want to save a few lines of code by creating a loop for
or while
to reduce what is below. I would assign a variable array
for baixo_final[]
getting baixo_final[i]
for example and the variable i
would go from 0 to 14
document.getElementById("baixo_final[0]").className = "baixo_final_2";
document.getElementById("baixo_final[1]").className = "baixo_final_2";
document.getElementById("baixo_final[2]").className = "baixo_final_2";
document.getElementById("baixo_final[3]").className = "baixo_final_2";
document.getElementById("baixo_final[4]").className = "baixo_final_2";
document.getElementById("baixo_final[5]").className = "baixo_final_2";
document.getElementById("baixo_final[6]").className = "baixo_final_2";
document.getElementById("baixo_final[7]").className = "baixo_final_2";
document.getElementById("baixo_final[8]").className = "baixo_final_2";
document.getElementById("baixo_final[9]").className = "baixo_final_2";
document.getElementById("baixo_final[10]").className = "baixo_final_2";
document.getElementById("baixo_final[11]").className = "baixo_final_2";
document.getElementById("baixo_final[12]").className = "baixo_final_2";
document.getElementById("baixo_final[13]").className = "baixo_final_2";
document.getElementById("baixo_final[14]").className = "baixo_final_2";
I imagine that these elements are created dynamically. It would not be the case to already create with the right class instead of doing this whole round?
– Bacco