Setting the background color in JavaScriptQuestion: How do I change the document's background color?
Answer: To change the background color, set the document.bgColor="#CCCCCC" // set to grayThis select box was created using the following code: <form name="bgcolorForm">Try it now: <select onChange="if(this.selectedIndex!=0) document.bgColor=this.options[this.selectedIndex].value"> <option value="choose">set background color <option value="FFFFCC">light yellow <option value="CCFFFF">light blue <option value="CCFFCC">light green <option value="CCCCCC">gray <option value="FFFFFF">white </select></form>
See also:
|
Copyright © 1999-2012, JavaScripter.net.