I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript.
thanks
|
I want to know how to get X and Y postion of HTML elements such as img, div in JavaScript. thanks | |||||||
feedback
|
|
The libraries go to some lengths to get accurate offsets for an element.
EDIT: see Adams's comment
| |||||||||||||||
feedback
|
|
You might be better served by using a JavaScript framework, that has functions to return such information (and so much more!) in a browser-independant fashion. Here are a few: With these frameworks, you could do something like:
| ||||
|
feedback
|
|
If page includes - at least- any "DIV", the function given by meouw throws the "Y" value beyond current page limits. In order to find the exact position, you need to handle both "offsetParent"s and "parentNode"s. Try the code given below (it is checked for FF2):
| ||||
|
feedback
|
|
if using jQuery, the dimensions plugin is excellent and allows you specify exactly what you want. e.g. Relative position, absolute position, absolute position without padding, with padding... It goes on, let's just say there is a lot you can do with it. Plus the bonus of using jQuery is it's lightweight file size and easy use, you won't go back to JavaScript without it afterwards. | ||||
|
feedback
|
|
You can add two properties to the
Here's a demo comparing the results to jQuery's | |||
|
feedback
|
|
HTML elements on most browsers will have:-
These specifiy the position of the element relative its nearest parent that has layout. This parent can often be accessed bif the offsetParent property. IE and FF3 have
These properties are less common, they specify an elements position with its parents client area (padded area is part of the client area but border and margin is not). | |||
|
feedback
|
|
You can find the best solution in the following post: Javascript to find x and y position of HTML control. This is really an awesome example. | ||||
|
feedback
|
|
This is the best code I've managed to create (works in iframes as well, unlike jQuery's offset()). Seems webkit has a bit of a different behavior. Based on meouw's comment:
| |||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.