diff options
author | John Resig <jeresig@gmail.com> | 2008-03-15 18:53:40 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2008-03-15 18:53:40 +0000 |
commit | 8f14ee1dd5c3bffc987f9a21a518f9901de66b54 (patch) | |
tree | ee61861238b333b4b70339f3e5611f1cd1833b4b /src/offset.js | |
parent | a19a123d89424a93068bf69cd1ccbc85eec33715 (diff) | |
download | jquery-8f14ee1dd5c3bffc987f9a21a518f9901de66b54.tar.gz jquery-8f14ee1dd5c3bffc987f9a21a518f9901de66b54.zip |
Imported the innerHeight and outerHeight methods from the Dimensions plugin.
Diffstat (limited to 'src/offset.js')
-rw-r--r-- | src/offset.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/offset.js b/src/offset.js index b29fcc7c2..4cd58cf7f 100644 --- a/src/offset.js +++ b/src/offset.js @@ -96,3 +96,35 @@ jQuery.fn.offset = function() { return results; }; + +// Create innerHeight, innerWidth, outerHeight and outerWidth methods +jQuery.each(["Height", "Width"], function(i, name){ + + var tl = name == "Height" ? "Top" : "Left", // top or left + br = name == "Height" ? "Bottom" : "Right"; // bottom or right + + // innerHeight and innerWidth + jQuery.fn["inner" + name] = function(){ + return this[ name.toLowerCase() ]() + + num(this, "padding" + tl) + + num(this, "padding" + br); + }; + + // outerHeight and outerWidth + jQuery.fn["outer" + name] = function(options) { + options = jQuery.extend({ margin: false }, options); + + return this["inner" + name]() + + num(this, "border" + tl + "Width") + + num(this, "border" + br + "Width") + + (options.margin ? + num(this, "margin" + tl) + num(this, "margin" + br) : + 0); + }; + +}); + +function num(elem, prop) { + elem = elem.jquery ? elem[0] : elem; + return elem && parseInt( jQuery.curCSS(elem, prop, true) ) || 0; +}
\ No newline at end of file |