Answers for "image source not changing from picture in jquery"

3

jquery change picture source

$(document).ready(function () {
    $('img').click(function(){
        $(this).attr('src','images/download.jpeg')
      })
})
Posted by: Guest on April-26-2020
0

jquery change picture src

<img id="my_image" src="first.jpg"/>
<script>
//Then you can change the src of your image with jQuery like this:
$("#my_image").attr("src","second.jpg");
</script>
Posted by: Guest on January-20-2021

Code answers related to "image source not changing from picture in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language