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\").
$('element[id^="ID"]').each(function () { console.log(this.value); });
Where element is the name of your targeted html element.