jquery assign src to image code example
Example 1: jquery change image src
$("#myImageID").attr("src","images/my_other_image.png");
document.getElementById('myImageID').src="images/my_other_image.png";
Example 2: change image src jquery
$(document).ready(function () {
$('img').click(function(){
$(this).attr('src','images/download.jpeg')
})
})
Example 3: jquery change picture source
$("#my_image").attr("src","second.jpg");
Example 4: jquery change picture src
<img id="my_image" src="first.jpg"/>
<script>
$("#my_image").attr("src","second.jpg");
</script>