views:

37

answers:

1

Hi all,

i was just wondering how you would use jquery to get the element at a particular x, y coordinate. You can .offset and .position to find absolute and relative position using jquery.

thanks a lot!

+1  A: 

Like this:

$(document.elementFromPoint(x, y))
SLaks