xxxxxxxxxx
$(".imgClass").attr("src","second.jpg");
$("#imgId").attr("src","second.jpg");
xxxxxxxxxx
//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";
xxxxxxxxxx
$(document).ready(function () {
$('img').click(function(){
$(this).attr('src','images/download.jpeg')
})
})
xxxxxxxxxx
//Change the img property using jQuery's attr method
$("#myImage").attr("src", 'img/new-image.jpg');
xxxxxxxxxx
<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>
xxxxxxxxxx
//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");
});