by topic I have some divs with id = \"loader\".
In my jQuery code I have
$(\"#loader\").hide(),
but it works only with the first
A way to hide all items of the same ID was as follows
$( "#hide" ).click(function() { $('div#hidden').hide(); });
ID Number 1 ID Number 2 ID Number 1 ID Number 2 ID Number 1 Hide Div
Hope you can find this helpful.