So this might be really simple, but I haven't been able to find any examples to learn off of yet, so please bear with me. ;)
Here's basically what I want to do:
<div>Lots of content! Lots of content! Lots of content! ...</div>
....
$("div").html("Itsy-bitsy bit of content!");
I want to smoothly animate between the dimensions of the div with lots of content to the dimensions of the div with very little when the new content is injected.
Thoughts?