set img src jquery code example
Example 1: 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";
Example 2: can we give a url to img with jquery
$("#my_image").attr("src","second.jpg");
Example 3: jquery get image src
$('#imageContainerId').prop('src')
Example 4: jquery change picture src
<img id="my_image" src="first.jpg"/>
<script>
$("#my_image").attr("src","second.jpg");
</script>
Example 5: change image src using jquery
//img is the attribute tag you can use #id if you want
$("img").click(function () {
// Change src attribute of image
$(this).attr("src", "images/card-front.jpg");
});