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 ?