Hi,
I have a list of divs with IDs which are just incrementing numeric values. I want to select a subset of those divs with IDs between say 7 and 12, like this:
$('.myDivs[ID between 7,12]').doSomething();
Anyone know how to do this?
I can't find anything in the jQuery docs and I have Googled the heck out of this and haven't managed to find a solution yet.
Thanks,
Paulo.