vote up 3 vote down star

Using Javascript how can I identify the element at a given position? Basically I'm looking to write a function that takes two input parameters (the x and y coordinates) and returns the html element at the position on the screen represented by the parameters.

flag

1 Answer

vote up 5 vote down check
document.elementFromPoint(x, y);

http://msdn.microsoft.com/en-us/library/ms536417%28VS.85%29.aspx

https://developer.mozilla.org/en/DOM/document.elementFromPoint

link|flag
wow, thanks, didnt know that +1 – Eldar Djafarov Aug 11 at 11:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.