Skip to content

Instantly share code, notes, and snippets.

var aniEnd = 'animationend webkitAnimationEnd MSAnimationEnd oAnimationEnd';
$('.some-els').bind(aniEnd, function(){
// Do something!
$(this).removeClass('animation-class');
});