I had this idea... let's say I have a DIV that contains some text.
<div id="myDIV">Testing testing lorem ipsum</div>
If I change the content of this DIV by doing something like
$("div#myDIV").html("New text New text New text New text New text New " +
"text New text New text New text New text New text New text New text " +
"New text New text New text New text")
the height of the DIV will change.
Is it possible to animate this sudden height change to smoothen the transition?