JQuery

Change image src using jQuery

Change image src using jQuery, someone asked me to explain?

In this example, I will show you how to change the image src attribute using jquery. The attr (name, value) method is used to set the named attribute, src and value. The following code is used to set the src using jQuery.

<img id="profilePic" src="~/images/hero.jpg" />

 

$("#profilePic").attr("src", "~/images/john.jpg");

Post your comments / questions