how to change background using javascript code example
Example 1: change background with js
document.body.style.backgroundColor = "red";
Example 2: change background with js
document.body.style.backgroundAttachment = "fixed";
document.body.style.backgroundColor = "red";
document.body.style.backgroundAttachment = "fixed";