Find elements by offset position using jQuery

Is there a simple method to extract all elements at a specific offset position (using jQuery)? Or do I need to check the offset of each element in the DOM?

+7
source share
3 answers
+11
source

I think the only method would be to fetch all the elements. There are no other ways to get a set of elements in a certain position.

0
source

If jQuery has a method, it will loop through all the elements and check. There is no other logical way to do this.

As far as I know, jQuery does not do this, so loop through Elements; you can use $().each(function());

0
source

All Articles