Reputation: 13213
If I have a list of 10 links, and I want to select all the links after the first 4, How?
I was looking at :eq()
but that doesn't seem to solve my issue since its specific, rather than a range.
Look for something like $("a:eq(>4)")
or something, hope it makes sense.
Upvotes: 2
Views: 43