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\").
If the ID portion isn't necessarily at the beginning you could do:
$( "[tagName][id*='ID']" )
Here's a full list of selectors: https://api.jquery.com/category/selectors/