i have buttons on a page and when the user clicks onto that button, the color of the page changes. basically i`m creating a theme changer. my code is this :
function Red() { var Redbtn = document.getElementById("btnRed"); Redbtn.bgColor = "#F00"; } function Blue() { }
Theme changer
ihave done upto the red button but the color of the page do not appears to be red.. please help where i
m getting problem.