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.

looking for a JavaScript solution (jQuery will be fine) to getting the height of some divs which all reside in a parent div with display set to none.

pseudo code:

<div id="hiddenParent" style="display:none">
  <div class="childDiv">child div 1</div>
  <div class="childDiv">child div 2</div>
  <div class="childDiv">child div 3</div>
</div>

let's say class ChildDiv does not specify height, nor is the height of any of the childDiv elements set anywhere.

any ideas on how to get their height, when "hiddenParent" is set to display:none ?

share|improve this question
4  
I think elemnts have to be visible to be measured. – n8wrl Aug 31 '12 at 17:52
thank you for the answers/feedback. i was hoping for a solution which would any trickery/cleverness such as displaying a cloned div super far off the screen, etc. i do appreciate the help. i think i may just resize the children when the parent is displayed, although it will likely cause some undesired visual affects when the script is running :/ – Stu Aug 31 '12 at 18:10
*avoid [any trickery/cleverness] – Stu Aug 31 '12 at 18:16

3 Answers

Try taking a look at jQuery: Get height of hidden element in jQuery

There are many good posts regarding this issue.

share|improve this answer
var clone = $("#hiddenParent").clone().css("display","block").css("position","absolute").css("left","-9999px");
$("#hiddenParent").after(clone);

alert(clone.outerHeight());
clone.remove();
​

Uses jQuery.

share|improve this answer

You could hide the div after jQuery gets the height of the element.

HTML (minus style)

<div id="hiddenParent">
  <div class="childDiv">child div 1</div>
  <div class="childDiv">child div 2</div>
  <div class="childDiv">child div 3</div>
</div>​

JQ

var height = $(".childDiv").height();
$("#hiddenParent").hide();
alert(height);​

http://jsfiddle.net/charlescarver/2Ndte/

Note: This code is just an example, and will only get the height of the first child, but you get the gist of how you can get the height of a hidden element.

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.