Skip to content

Instantly share code, notes, and snippets.

@nini
Created June 15, 2015 10:18
Show Gist options
  • Save nini/66741094729b7b848bed to your computer and use it in GitHub Desktop.
Save nini/66741094729b7b848bed to your computer and use it in GitHub Desktop.
jQuery promise after animation
$( ".elem" ).each(function( i ) {
$( this ).fadeIn().fadeOut( 1000 * ( i + 1 ) );
});
$( ".elem" ).promise().done(function() {
$( "p" ).append( " Finished! " );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment