Can someone show me how to get the top
& left
position of a div
or span
element when one is not specified?
ie:
<span id='11a' style='top:55px;' onmouseover="GetPos(this);">stuff</span>
<span id='12a' onmouseover="GetPos(this);">stuff</span>
In the above, if I do:
document.getElementById('11a').style.top
The the value of 55px
is returned. However, if I try that for span
'12a', then nothing gets returned.
I have a bunch of div
/span
s on a page that I cannot specify the top
/left
properties for, but I need to display a div
directly under that element.
As Alex noted you can use jQuery offset() to get the position relative to the document flow. Use position() for its x,y coordinates relative to the parent.
EDIT: Switched
document.ready
forwindow.load
becauseload
waits for all of the elements so you get their size instead of simply preparing the DOM. In my experience,load
results in fewer incorrectly Javascript positioned elements.This function will tell you the x,y position of the element relative to the page. Basically you have to loop up through all the element's parents and add their offsets together.
However, if you just wanted the x,y position of the element relative to its container, then all you need is:
To put an element directly below this one, you'll also need to know its height. This is stored in the offsetHeight/offsetWidth property.
While @nickf's answer works. If you don't care for older browsers, you can use this pure Javascript version. Works in IE9+, and others
For anyone needing just top or left position, slight modifications to @Nickf's readable code does the trick.
and
I realize this is an old thread, but @alex 's answer needs to be marked as the correct answer
element.getBoundingClientRect()
is an exact match to jQuery's$(element).offset()
And it's compatible with IE4+ ... https://developer.mozilla.org/en-US/docs/Web/API/Element.getBoundingClientRect
You can call the method
getBoundingClientRect()
on a reference to the element. Then you can examine thetop
,left
,right
and/orbottom
properties...If using jQuery, you can use the more succinct code...