I want to slide down (show) this DIV that has 0px height initially:
<div id="toslide" style="height:0px;overflow:hidden;"> ... various content </div>
However the final height is not known because of various screen widths, font sizes and other stuff that affect the inside layout and therefore the target height.
If I would have to do it manually, I woudl show it with visibility:hidden;, measure the height and then animate it to the know height (this has, however, drawbacks too).
I have mixed results with jQuery's .slideDown() - in the documentation it works, but it doesn't work for me in this particular case.
How can jQuery know the final height?
Edit: one workaround is to have another inner div with height:auto; that would be used to measure height.