jquery updating src of an image on click 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')
})
})