You seem to be using CSS3 transition for this. The easiest way to do this is to set the delay manually:
$("#card1").removeClass('flip'); setTimeout(function(){ //wait for card1 flip to finish and then flip 2 $("#card2").removeClass('flip'); }, 500); setTimeout(function(){ //wait for card2 flip to finish and then flip 3 $("#card3").removeClass('flip'); }, 1000);
There is no built-in jQuery method to verify that the css transition is complete.
source share