js background change code example
Example 1: change background with js
document.body.style.backgroundColor = "red";
Example 2: change background with js
document.body.style.background = "#f3f3f3 url('img_tree.png') no-repeat right
top";
Example 3: change background with js
document.body.style.backgroundAttachment = "fixed";