// 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';
}
element.style.backgroundColor
targetView.setBackgroundColor(Color.parseColor("#FFFFFF"));
document.getElementById('id').style.backgroundColor = 'green';