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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
http://msdn.microsoft.com/en-us/library/ms536417%28VS.85%29.aspx https://developer.mozilla.org/en/DOM/document.elementFromPoint |
|||||||
|
|
You can use the native JavaScript See the elementFromPoint w3c draft And, a code sample:
You can use |
|||
|
|