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?
|
I have the following code:
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? |
||||
|
|
|
Every item in the DOM has a unique id. If you want to act on many divs at the same time use a class |
|||
|
|
|
Yes because by definition an element ID can only appear once on a page. If you have more elements use a class instead.
With
|
|||
|
|