Say I have a div containing an unlimited number of child divs. Is there an easy way to get jQuery to select the nth div and every div after it so I can change those (in this case, call remove() on old divs)?
|
|
|
|||
|
|
|
|
You can use the ":gt()" selector:
|
||
|
|
|
Typing this out of my head and the jQuery API doc (read: this is not tested), but the first thing I'd do is to
|
||||
|
|
|
Or if you need to do something with all divs first:
|
||
|
|
