Published
- 1 min read
jquery change image src
The solution for this is noted below
jquery change image src
Solution
//change image src with jquery
$("#myImageID").attr("src","images/my_other_image.png");
//change image src plain javascript
document.getElementById('myImageID').src="images/my_other_image.png";
Try other methods by searching on the site. That is if this doesn’t work