I'll try to explain what i'm trying to get. I've a div with position:fixed (at the bottom of a page) into that div, there is some other divs. What i want is to show another div (with absolute position) aligned to the right with those divs... in other words, i wan't to know the left position of the divs...
+2
A:
Relative to the document:
$('#ID').offset().left
Relative to its offset parent:
$('#ID').position().left
Eric
2009-09-03 08:49:05