Guest User

Untitled

a guest
Nov 17th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <script>
  6.  
  7. function changeImg() {
  8.  
  9.  
  10. if (document.getElementById("cycle").src == "fox.jpg")
  11. {
  12. document.getElementById("cycle").src = "hawk.jpg";
  13. }
  14. else
  15. {
  16. document.getElementById("cycle").src = "ant.jpg";
  17. }
  18.  
  19. }
  20. </script>
  21.  
  22. <button onclick = "changeImg()">change image</button>
  23.  
  24. <img id ="cycle" src ="fox.jpg"/>
  25.  
  26. </body>
  27. </html>
Add Comment
Please, Sign In to add comment