jQuery html() image src code example
Example 1: jquery change image src
$("#myImageID").attr("src","images/my_other_image.png");
document.getElementById('myImageID').src="images/my_other_image.png";
Example 2: jquery get image src
$('.img1 img').attr('src');
Example 3: jquery get img src
$('img').attr(src);
Example 4: can we give a url to img with jquery
$("#my_image").attr("src","second.jpg");
Example 5: jquery get image src
$('#imageContainerId').prop('src')
Example 6: change image src using jquery
$("img").click(function () {
$(this).attr("src", "images/card-front.jpg");
});