Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Change Body Background Every 10 sec Reply To: Change Body Background Every 10 sec

#280907
sagarleo1
Participant

Hii, I have given you the code (JavaScript), try it yourself and share the result

var i = 0;
function change() {
var doc = document.getElementById(“background”);
var color = [“black”, “blue”, “brown”, “green”];
doc.style.backgroundColor = color[i];
i = (i + 1) % color.length;
}
setInterval(change, 1000);

&nbsp