Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
70
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 type="text/javascript">
  5. function changecolour()
  6. {
  7.   document.getElementById("box").style.background = document.getElementById("colour").value;
  8. }
  9. </script>
  10. </head>
  11.  
  12. <body>
  13. <div id="box" style="width:100px; height:100px; border:1px solid #000;"></div><br />
  14. <input type="text" value="#aa0000" id="colour" /><input type="button" value="Click it!" onclick="changecolour();" />
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement