Animating max-height to overcome height:auto limitation

by Gaurav Singh

HTML

<div id="blah">
</div>

CSS

div {
    background:slategray;
    color:white;
    padding:20px;
}

JavaScript

$("#blah")
    .hide()
    .html('<p>Another Line</p><p>Another Line</p><p>Another Line</p>')
    .slideDown('slow');