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?
Call document.elementFromPoint .
document.elementFromPoint
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.
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());
$().each(function());