Question

I'm aware of the position method, but that retrieves the position relative to the offset parent. Do I just throw in a loop to transverse up the document nodes?

I guess that I'm surprised that it isn't part of the core, and I'm wondering if it's tucked away somewhere that I don't know about.

Was it helpful?

Solution

jQuery(elem).offset();

See http://docs.jquery.com/CSS/offset for a summary

OTHER TIPS

Without jQuery you can use:

document.getElementById('elemId').clientTop
document.getElementById('elemId').clientLeft 

or

document.getElementById('elemId').offsetTop
document.getElementById('elemId').offsetLeft 
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top