aboutsummaryrefslogtreecommitdiffstats
path: root/src/offset.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2008-03-15 18:53:40 +0000
committerJohn Resig <jeresig@gmail.com>2008-03-15 18:53:40 +0000
commit8f14ee1dd5c3bffc987f9a21a518f9901de66b54 (patch)
treeee61861238b333b4b70339f3e5611f1cd1833b4b /src/offset.js
parenta19a123d89424a93068bf69cd1ccbc85eec33715 (diff)
downloadjquery-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.js32
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