Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have following Jquery

    $j("a#Pinterest").html("<img src='/images/Social Media/pinterest.png'>");

And mark up is as follows ;

<a id="Pinterest"></a>

Which works fine, but the user has an option to add multiple to one page, and I noticed that in IE7 only the first anchor gets the image attached and not the others. In all other browsers, they all get the image attached.

Any Ideas ?

share|improve this question
Are there multiple copies of "<a id="Pinterest"></a>" in the page? – Diodeus Apr 12 '12 at 17:38

3 Answers

up vote 2 down vote accepted

HTML

<a class="Pinterest"></a>
<a class="Pinterest"></a>

JS

$j("a.Pinterest").html("<img src='/images/Social Media/pinterest.png'>");

Id should be unique but you can use class for a group of elements using same class name.

share|improve this answer

id must be unique on a html page. You can only use the same ID once. Use a class attribute instead.

share|improve this answer
Yup, that's what I was hinting at. :) – Diodeus Apr 12 '12 at 17:41

you can try different doctype:

Fix Your Site With the Right DOCTYPE!
http://www.alistapart.com/articles/doctype/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.