JQuery IE7 Id append issue
So, I have the following jQuery
$j("a#Pinterest").html("<img src='/images/Social Media/pinterest.png'>");
And the markup is as follows:
<a id="Pinterest"></a>
Which works fine, but the user has the ability to add several to one page, and I noticed that in IE7 only the first anchor receives the attached image, and not the others. In all other browsers, they all get an image.
Any ideas?
+3