// change background color for specific id ..
function changebackground(){
document.getElementById('id').style.backgroundColor = 'green' ;
}
// change background color for whole body..
function changebackground(){
document.body.style.backgroundColor = 'green';
}
document.body.style.backgroundColor = "yellow";
function changeBackground(color) {
document.body.style.background = color;
}
window.addEventListener("load",function() { changeBackground('red') });
document.querySelector('html').style.backgroundColor = 'red';
var warning = document.getElementById("warning");
warning.style.background-color = "red";
element.style.backgroundColor
targetView.setBackgroundColor(Color.parseColor("#FFFFFF"));
document.getElementById('id').style.backgroundColor = 'green';
Changing body background color using javascript