The Code
$.ajax({
url: "get_portfolio_experience.php",
success: function(html) {
$("#inbox_content").html(html).hide().slideDown('slow');
}
});
The content doesn't animate if i do not put a hide() before slideDown(). And if i put a hide() it doesn't show in IE. What should i do?