I have many elements accross page - ID1, ID2 ID3 ...
ID1, ID2 ID3 ...
I want to manipulate all the elements. Is there any simpler way to do this.
$(\"#ID\").
Give them a class, so you can select them by the class?
$('.class').each(function(i,e) { // });