From 139b03af7c2d7e70a26591424f82f09a02132198 Mon Sep 17 00:00:00 2001 From: John Resig Date: Sun, 9 Sep 2007 22:59:41 +0000 Subject: [PATCH] Landing a version of $(document)/$(window) .width()/.height(). It won't win any awards, but it'll hold us over for this release. --- src/core.js | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/src/core.js b/src/core.js index bedafdc..3fb59f8 100644 --- a/src/core.js +++ b/src/core.js @@ -1080,10 +1080,20 @@ jQuery.each( { }; }); -jQuery.each( [ "height", "width" ], function(i,n){ +jQuery.each( [ "Height", "Width" ], function(i,name){ + var n = name.toLowerCase(); + jQuery.fn[ n ] = function(h) { - return h == undefined ? - ( this.length ? jQuery.css( this[0], n ) : null ) : - this.css( n, h.constructor == String ? h : h + "px" ); + return this[0] == window ? + jQuery.browser.safari && self["inner" + name] || + jQuery.boxModel && Math.max(document.documentElement["client" + name], document.body["client" + name]) || + document.body["client" + name] : + + this[0] == document ? + Math.max( document.body["scroll" + name], document.body["offset" + name] ) : + + h == undefined ? + ( this.length ? jQuery.css( this[0], n ) : null ) : + this.css( n, h.constructor == String ? h : h + "px" ); }; }); -- 1.7.10.4