Sorry but no. When an element is set "display: none" it has no dimensions. What you could possibly do is set the container to not be hidden but wit ha style of "visibility: hidden". While you can't see an invisible element it still has dimensions. Height() will work then.
On Sep 4, 9:23 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hello, > > I'm using .height() to get the hight on an element which works just > fine. My issue is that some of the elements are contained within > hidden blocks. All those elements within the hidden blocks return a > height of 0. > > Is there any way to get the height of these elements while hidden? > > Thanks, > Todd