Answers for "jquery add src to img"

13

jquery change image src

//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";
Posted by: Guest on July-31-2019
2

can we give a url to img with jquery

$("#my_image").attr("src","second.jpg");
Posted by: Guest on March-29-2020
0

jquery change picture src

<img id="my_image" src="first.jpg"/>
<script>
//Then you can change the src of your image with jQuery like this:
$("#my_image").attr("src","second.jpg");
</script>
Posted by: Guest on January-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language