Hi All
How do I get things to run smoothly and in order based on my actions.
ie
var $content = $("#content");
$content.slideUp().html('');
$conten.html(from_my_ajax_request).slideDown();
Basically I have done an ajax request to place the content of div #content.
But running the above I can see the code come in but the slideUp does not finish before slideDown takes over. I would obviously like it to be smooth.
Hope you can help.