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.

I've tried using the jQuery .height() function to get the height of an element but it seems to be ignoring padding and margins.

How can I get the size of an element's box using Javascript and/or jQuery?

share|improve this question

3 Answers

up vote 2 down vote accepted

use outerHeight

http://api.jquery.com/outerHeight/

share|improve this answer
Exactly what I was after! – GiddyUpHorsey May 2 '12 at 23:14

Are you able to wrap the div with padding/margins within another div and get the height of the container div?

<div id="container">
 <div id="divWithPadding">
   content
 </div>
</div>
share|improve this answer
Not doable in my case, but it's good to know of this technique. – GiddyUpHorsey May 2 '12 at 23:15

Example using outerHeight();

http://jsfiddle.net/HruqF/2/

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.