Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
184
rated 0 times [  189] [ 5]  / answers: 1 / hits: 77928  / 14 Years ago, wed, december 8, 2010, 12:00:00

Suppose I have the following HTML:



<img id=foo src=bar1.jpg/>


I would like to switch the src to bar2.jpg



Can I just do this?



$(#foo).attr(src, bar2.jpg);


Or do I have to do this?



$(#foo).removeAttr(src);
$(#foo).attr(src, bar2.jpg);


Thanks!


More From » jquery

 Answers
5

When you do this:


$("#foo").attr("src", "bar2.jpg");

The previous src is replaced.


So you don't need:


$("#foo").removeAttr("src");



You can confirm it out here


[#94676] Tuesday, December 7, 2010, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
stephonkeandrer

Total Points: 392
Total Questions: 94
Total Answers: 100

Location: Tajikistan
Member since Sun, Aug 29, 2021
3 Years ago
;