Answers for "change background color of this using javascript function"

0

set background color dynamically javascript

document.body.style.backgroundColor="white"
Posted by: Guest on June-29-2020
2

JavaScript Change Background Color

var element = document.body;
element.style.backgroundColor = "blue";
Posted by: Guest on October-27-2020

Code answers related to "change background color of this using javascript function"

Code answers related to "Javascript"

Browse Popular Code Answers by Language