I would like to know, how can I skip first N elements in JQuery. Something like this:
-
2020-12-11 01:12
I think you are looking for the :gt
selector: http://api.jquery.com/gt-selector/
Note that you start counting from 0 here.
Try:
$('#test > div:gt(1)')