I am trying to fadeIn and and animate simultaneously. However it is doing them one after the other. How do you do it at the same time.
I have tried:
$('#box').fadeIn(1000);
$('#box').animate({marginTop:'0'}, 1000);
AND
$('#box').fadeIn(1000).animate({marginTop:'0'}, 1000);
But they both do the same thing. One event then another. How do I do them at the same time?