Changing Images In Javascript Changing An Images Source File <img id="my_image" src="images/image1.png" width="22" height="8"> <script> //Chage the image source: document.getElementById("my_image").src="images/image2.png"; </script> Read More →