I would like to do something like this:
jqueryElement.find('divIdWithIterator**').each(...);
where 'divIdWithIterator**'
matches all elements with identifiers starting with 'divIdWithIterator'
and ending with a number, for example:
divIdWithIterator1, divIdWithIterator2, divIdWithIterator26
What is a good way to do this in jQuery?
Thanks!
source share