I have a DIV defined with a fixed height:
.w {
height: 100px;
overflow: hidden;
}
if I put text in this it will hide everything that goes beyond the 100px. I have a button that shows all text, basically it does this:
$('.w').height('auto');
this will make all text visible, but I would like to animate this. And that won’t work with height=’auto’, it has to have a specific height.
The question: how do I get the height the DIV should be to be able to show all text in it?
You could set the height to ‘auto’, then measure it, then set it back and start the effect.
Something like this (live example):