The code like this:
$(".hide").click(function(){
$(".online-contact").animate({width: 'toggle',height: '100%'}, "fast");
$(this).hide();
$(".show-class").show();
})
I want to show the div with the class of show-class when the the animate function complete,what can I do it?