How can I get the height of an element which has got a parent element that has display: none?
An example here: jsfiddle.net
Thanks
Lukas
|
How can I get the height of an element which has got a parent element that has display: none? An example here: jsfiddle.net Thanks Lukas |
|||
|
|
|
Temporarily HTML:
JS:
Demo: jsfiddle.net/Gts6A/72 |
|||||||||||||
|
|
You can do this or you can use the hack from this question.
See fiddle. |
||||
|
|
|
|
|||
|
|
|
Hidden elements have an undefined width and height, so it's not possible to get em. |
|||
|
|
|
This is a bit klunky but you have to have an object rendered before it can be measured.
|
|||
|
|
|
Either you should display the div or it is impossible to get the height of the hidden elements. I would say, use .show() to show the div, get the height and then use .hide() to hide it again.. |
|||
|
|