Skip to content
Permalink
Browse files
Fixed bug with jQuery: height computation for hidden elements
  • Loading branch information
Klaus Hartl committed Sep 1, 2006
1 parent 905a0ae commit 744c060
Showing 1 changed file with 8 additions and 1 deletion.
@@ -1168,12 +1168,19 @@ jQuery.extend({
oWidth = e.offsetWidth;
} else {
e = jQuery(e.cloneNode(true)).css({
visibility: "hidden", position: "absolute", display: "block"
visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0"
}).appendTo(e.parentNode)[0];

var parPos = jQuery.css(e.parentNode,"position");
if ( parPos == "" || parPos == "static" )
e.parentNode.style.position = "relative";

oHeight = e.clientHeight;
oWidth = e.clientWidth;

if ( parPos == "" || parPos == "static" )
e.parentNode.style.position = "static";

e.parentNode.removeChild(e);
}
});

0 comments on commit 744c060

Please sign in to comment.