Hi everybody:
I'm new to jQuery , I need after event to do an effect and after the effect completed do another effect, I tried to do it this way:
Code:
function hide(){
$('#output1').fadeIn('slow');
$('#add-comment').slideUp('slow');
}
but they appeared in the same time, can anybody help me with this.