Is there a way of finding the absolute position of an element, i.e. relative to the start of the window, using jQuery?
|
|
|
You can use this return value to position other elements at the same spot:
|
|||||||||||||||||||
|
|
Note that $(element).offset() tells you the position of an element relative to the document. This works great in most circumstances, but in the case of If you are looking for a value relative to the viewport (window), rather than the document on a position:fixed element, you can subtract the document's scrollTop() value from the fixed element's offset().y value. If the position:fixed element's offset parent is the document, you want to read parseInt($.css('top')) instead. |
||||
|
|
protected by Rob W Oct 30 '11 at 18:00
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.