change background style js code example
Example 1: set attribute javascript background image
document.body.style.backgroundImage = "url('img_tree.png')";
Example 2: javascript change background color
function changeBackground(color) {
document.body.style.background = color;
}
window.addEventListener("load",function() { changeBackground('red') });