Advertisement
DD3AH

html select color

Mar 8th, 2018
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script>
  5. function setcolor(e){
  6.     e.style["background-color"]=e.options[e.selectedIndex].style["background-color"];
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <select onchange="setcolor(this);" >
  13. <option>choose</option>
  14. <option
  15.     style="background-color:red;"
  16. >1</option>
  17. <option
  18.     style="background-color:green;"
  19. >2</option>
  20. <option
  21.     style="background-color:blue;"
  22. >3</option>
  23. </select>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement