Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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; ">
share|improve this question
Usually, if 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

2 Answers

up vote 2 down vote accepted

Did you try $("#element").outerHeight()? It gets the computed height rather than the explicitly set height.

share|improve this answer
1  
It returns 0 as well – brenjt Apr 14 '11 at 17:32

please check you try to get height when DOM is ready, that is to say in the window.onload function.

In case your div element is empty and height is auto, it will return 0. So your div is likely to be empty before full page is loaded.

For example : I want to remember initial heights for my .elementDiv divs :

var initialHeight = [];
window.onload = function() {
$('.elementDiv').each(function(i) {
  initialHeight[i]=$(this).height();
  });
  // then use it
  }

When not in the onload function, the heights I get are all 0.

I hope this was the reason, because I don't see anything else..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.