Skip to content

Instantly share code, notes, and snippets.

@brettsnippets
Forked from adamjmcintyre/gist:3098766
Last active August 29, 2015 14:16
Show Gist options
  • Save brettsnippets/09e351f6800242a45a2a to your computer and use it in GitHub Desktop.
Save brettsnippets/09e351f6800242a45a2a to your computer and use it in GitHub Desktop.
var aniEnd = 'animationend webkitAnimationEnd MSAnimationEnd oAnimationEnd';
$('.some-els').bind(aniEnd, function(){
// Do something!
$(this).removeClass('animation-class');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment