How can I get/set the height of an hidden element by jquery?
<div id="test" style="display:none">...</div>
$("#test").height() return 0
$("#test").height(30) return exception.
|
How can I get/set the height of an hidden element by jquery?
|
|||
|
|
|
Yo should do (with quotes):
|
|||
|
|
or
It is returning 0 because it is hidden. |
|||
|
|