tags:

views:

25

answers:

1

Is there a way to select the top most DOM element at a certain x-y position with Javascript?

So give x and y, what DOM element is there?

+2  A: 

You can use document.getElementFromPoint.

KennyTM