2525
0
Q:

change image src using jquery

$("#my_image").attr("src","second.jpg");
9
//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";
7
$(document).ready(function () {
    $('img').click(function(){
        $(this).attr('src','images/download.jpeg')
      })
})
3
// https://codepen.io/kman/pen/dXjpoX
// Stockphotos JS

$(document).ready(function(){
  var flag = 0;  
  $("button#changeSize").click(function(){
    if(flag == 0) {
      $("#dummyimage").attr("src","http://dummyimage.com/350x155/");
      flag = 1;
    }
    else if(flag == 1) {
      $("#dummyimage").attr("src","http://dummyimage.com/450x255/");
      flag = 0;
    }
  });
});
0
//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");
                });
0

New to Communities?

Join the community