Is there any way to return the height of an element that is already set to auto? I just get 0 when I call $("#element").height();
Here is the jquery code. The img.height() return 0 therefore the end result is off.
img.css({top: (img.parent().height() - img.height()) /2, left: (img.parent().outerWidth() - img.outerWidth()) / 2});
The HTML looks like this:
<div id="exploreImage" class="virtual-room-large" style="width: 288px; height: auto; top: 185px; left: 89px; ">
height()returns 0, the element's height is 0. Can you show the HTML of the element and what is in it, and the full jQuery code? – Pekka 웃 Apr 14 '11 at 17:28