Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code:

$('#select_albums').load(document.location.href + "&action=get_albums");

But this is only replacing only the first found div with the id #select_albums from DOM. How do I replace all divs with an id?

share|improve this question

4 Answers

up vote 5 down vote accepted

Every item in the DOM has a unique id. If you want to act on many divs at the same time use a class $(".myclass") or a tag $("div") selector.

share|improve this answer
It works! Thanks a lot. It actually makes sense – Dudul May 28 '10 at 14:26

Yes because by definition an element ID can only appear once on a page. If you have more elements use a class instead.

$('.select_albums').load(document.location.href + "&action=get_albums");

With

<div class="select_albums"></div>
<div class="select_albums"></div>
share|improve this answer

id's must be unique, try using a class instead such as $(".albums").load...

share|improve this answer

ids must be unique

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.