Possible Duplicate:
jQuery Animation - Smooth Size Transition
I have a div #infoMenu, whose content is being replaced with the following code:
function infoMenu(worldID) {
$('#infoMenu').load('main.php?worldID='+worldID+'&menu #infoMenu').html('Loading...');
}
I wonder if I can animate the div's height instead of it just "jumping" into diffrent heights depending on the new content´s space.
Thanks!