Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html lang="en">
  2. <head>
  3. <title>HTML5 opera color selection</title>
  4. <script>
  5. function ChangeBgColor(color)
  6. {
  7. document.bgColor = color;
  8. document.ChangeColor.PickedColor.value = color;
  9. }
  10. </script>
  11. </head>
  12. <body bgcolor="#ffffff">
  13. <header>
  14. <h1>HTML5 opera color selection</h1>
  15. </header>
  16. <form name="ChangeColor">
  17. <p>choose Background Color of your choice
  18. <input name="colorpicker" type="color" onchange="ChangeBgColor(colorpicker.value);">
  19. </p>
  20. <p>
  21. Hexadecimal value of Selected Color
  22. <input name="PickedColor" type="text">
  23. </p>
  24. </form>
  25. </body>
  26. </html>​
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement