Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script language = "javascript">
- function changebg(color){
- document.body.style.backgroundColor = color.value;
- }
- </script>
- </head>
- <body>
- <form>
- <select onchange = "changebg(this)">
- <option value = "white"> white </option>
- <option value = "green"> green </option>
- <option value = "blue"> blue </option>
- <option value = "grey"> grey </option>
- <option value = "red"> red </option>
- </select>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement