Possible Duplicate:
jQuery Animation - Smooth Size Transition
I have a div
with content that changes using .html('some content')
. When the content changes, the height of the div either increases or decreases depending on whether the content is getting longer or shorter.
Right now the div
resizes immediately. I want to use jQuery to make it resize smoothly, i.e. expand smoothly if the content is taller, or shrink smoothly if the content is shorter.
Thanks!