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.

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.

share|improve this question

2 Answers

up vote 0 down vote accepted

Yo should do (with quotes):

  $("#test").height('30') 

$("#test").height() returns 0 if you don't define a default width in an external css and if the element is hidden.

share|improve this answer
$("#test").ccs("height", "30px");

or

$("#test").height("30px");

It is returning 0 because it is hidden.

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.