add img src in jquery code example
Example 1: jquery change picture source
$("#my_image").attr("src","second.jpg");
Example 2: how to add an image using jquery
// Change src attribute of image
$(this).attr("src", "images/card-front.jpg");