Guest User

Untitled

a guest
May 22nd, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <html>
  2. <head>``
  3. </head>
  4. <body>
  5. <img src="images/test"
  6. <br><br><br>
  7. <button>Click to change image!</button>
  8. </body>
  9. </html>
  10.  
  11. <html>
  12. <head>
  13. <script>
  14.  
  15. function changeImage()
  16. {
  17. var img = document.getElementById("image");
  18. img.src="images/test2";
  19. return false;
  20. }
  21.  
  22. </script>
  23.  
  24. </head>
  25. <body>
  26. <img id="image" src="images/test" />
  27. <br><br><br>
  28. <button id="clickme" onclick="changeImage();">Click to change image!</button>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment