2 // Originally By Brandon Aaron, part of the Dimension Plugin
3 // http://jquery.com/plugins/project/dimensions
4 jQuery.fn.offset = function() {
5 var left = 0, top = 0, elem = this[0], results;
7 if ( elem ) with ( jQuery.browser ) {
8 var parent = elem.parentNode,
10 offsetParent = elem.offsetParent,
11 doc = elem.ownerDocument,
12 safari2 = safari && parseInt(version) < 522,
13 fixed = jQuery.css(elem, "position") == "fixed";
15 // Use getBoundingClientRect if available
16 if ( elem.getBoundingClientRect ) {
17 var box = elem.getBoundingClientRect();
19 // Add the document scroll offsets
20 add(box.left + Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft),
21 box.top + Math.max(doc.documentElement.scrollTop, doc.body.scrollTop));
23 // IE adds the HTML element's border, by default it is medium which is 2px
24 // IE 6 and 7 quirks mode the border width is overwritable by the following css html { border: 0; }
25 // IE 7 standards mode, the border is always 2px
26 // This border/offset is typically represented by the clientLeft and clientTop properties
27 // However, in IE6 and 7 quirks mode the clientLeft and clientTop properties are not updated when overwriting it via CSS
28 // Therefore this method will be off by 2px in IE while in quirksmode
29 add( -doc.documentElement.clientLeft, -doc.documentElement.clientTop );
31 // Otherwise loop through the offsetParents and parentNodes
34 // Initial element offsets
35 add( elem.offsetLeft, elem.offsetTop );
38 while ( offsetParent ) {
39 // Add offsetParent offsets
40 add( offsetParent.offsetLeft, offsetParent.offsetTop );
42 // Mozilla and Safari > 2 does not include the border on offset parents
43 // However Mozilla adds the border for table or table cells
44 if ( mozilla && !/^t(able|d|h)$/i.test(offsetParent.tagName) || safari && !safari2 )
45 border( offsetParent );
47 // Add the document scroll offsets if position is fixed on any offsetParent
48 if ( !fixed && jQuery.css(offsetParent, "position") == "fixed" )
51 // Set offsetChild to previous offsetParent unless it is the body element
52 offsetChild = /^body$/i.test(offsetParent.tagName) ? offsetChild : offsetParent;
53 // Get next offsetParent
54 offsetParent = offsetParent.offsetParent;
57 // Get parent scroll offsets
58 while ( parent.tagName && !/^body|html$/i.test(parent.tagName) ) {
59 // Remove parent scroll UNLESS that parent is inline or a table to work around Opera inline/table scrollLeft/Top bug
60 if ( !/^inline|table.*$/i.test(jQuery.css(parent, "display")) )
61 // Subtract parent scroll offsets
62 add( -parent.scrollLeft, -parent.scrollTop );
64 // Mozilla does not add the border for a parent that has overflow != visible
65 if ( mozilla && jQuery.css(parent, "overflow") != "visible" )
69 parent = parent.parentNode;
72 // Safari <= 2 doubles body offsets with a fixed position element/offsetParent or absolutely positioned offsetChild
73 // Mozilla doubles body offsets with a non-absolutely positioned offsetChild
74 if ( (safari2 && (fixed || jQuery.css(offsetChild, "position") == "absolute")) ||
75 (mozilla && jQuery.css(offsetChild, "position") != "absoltue") )
76 add( -doc.body.offsetLeft, -doc.body.offsetTop );
78 // Add the document scroll offsets if position is fixed
80 add(Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft),
81 Math.max(doc.documentElement.scrollTop, doc.body.scrollTop));
84 // Return an object with top and left properties
85 results = { top: top, left: left };
88 function border(elem) {
89 add( jQuery.css(elem, "borderLeftWidth"), jQuery.css(elem, "borderTopWidth") );
93 left += parseInt(l) || 0;
94 top += parseInt(t) || 0;