set create img tag with src in jquery code example
Example 1: jquery change picture source
$("#my_image").attr("src","second.jpg");
Example 2: jquery change picture source
$(document).ready(function () {
$('img').click(function(){
$(this).attr('src','images/download.jpeg')
})
})