Skip to content

Instantly share code, notes, and snippets.

@taimursaeed
Created March 21, 2020 07:39
Show Gist options
  • Save taimursaeed/defb25581ba9700f3813311321fcdbe7 to your computer and use it in GitHub Desktop.
Save taimursaeed/defb25581ba9700f3813311321fcdbe7 to your computer and use it in GitHub Desktop.
Wait for CSS animation to complete
// wait for css animation to complete
$(".class").on(
"animationend webkitAnimationEnd oAnimationEnd MSAnimationEnd",
function() {
$(this).css({
//do stuff
});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment