2013-02-12 1 views

답변

3

경우는 .promise().done() 사용

anObject.fadeOut(fadeOutTime).promise().done(function(){ 
     anObject.css('display', 'none'); 
     console.log("inside the callback"); 
     veryImportantMethod(); 
    });