i am using flip plugin of jquery. i would like to flip a card(div), after it finished to flip,immediately to revertFlip it. that what i tried:
$("#flipbox").bind("click",function(){
$(this).flip({
direction:'tb',
onEnd: function() {
$(this).revertFlip();
console.log('when the animation has already ended');
}
})
}
Do you have any idea?
Thanks.