Answers for "how set color background Color specific button javascript"

9

javascript change background color

document.body.style.backgroundColor = "yellow";
Posted by: Guest on July-08-2020
6

javascript change background color

function changeBackground(color) {
   document.body.style.background = color;
}

window.addEventListener("load",function() { changeBackground('red') });
Posted by: Guest on March-20-2020

Code answers related to "how set color background Color specific button javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language