Advertisement
Guest User

Untitled

a guest
Nov 15th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <h1>Javascript Can Change Images</h1>
  2. <!--Must make id if using JS-->
  3. <img id="myImage" onclick="changeImage()" src="image1.png" width="100" height="100">
  4. <p>Click on the image to change it</p>
  5.  
  6. <script>
  7. function changeImage() {
  8. var image = document.getElementById('myImage');
  9. if (image.src.match("image1")) {
  10. image.src = "image2.jpg";
  11. } else {
  12. image.src = "image1.png";
  13. }
  14. }
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement