make image changer jquery code example
Example 1: change image src jquery
$(document).ready(function () {
$('img').click(function(){
$(this).attr('src','images/download.jpeg')
})
})
Example 2: change image src using jquery
//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");
});