How can I find the XY coordinates of an HTML element (DIV) from JavaScript if they were not explicitly set?
|
feedback
|
|
Here's how I do it:
| |||
|
feedback
|
|
That can be tricky depending on browser and version. I would suggest using jQuery and the positions plugin. | |||||||
feedback
|
|
You can use a library such as Prorotype or jQuery, or you can use this handy function: It retuns an array.
} | ||||
feedback
|
|
For what it's worth, here's a recursive version:
| |||
|
feedback
|
|
I am not sure what you need it for, and such things are always relative (screen, window, document). But when I needed to figure that out, I found this site helpful: http://www.mattkruse.com/javascript/anchorposition/source.html And I also found that the tooltip plugin someone made for jQuery had all sorts of interesting insight to x,y positioning tricks (look at its viewport class and the underlying support jQuery provides for it). http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ | |||
|
feedback
|
|
You can add two properties to the
Here's a demo comparing the results to jQuery's | |||
|
feedback
|