jquery image src change code example
Example: change image src jquery
$(document).ready(function () {
$('img').click(function(){
$(this).attr('src','images/download.jpeg')
})
})
$(document).ready(function () {
$('img').click(function(){
$(this).attr('src','images/download.jpeg')
})
})