Skip to content

Instantly share code, notes, and snippets.

@taimursaeed
Created March 20, 2020 09:53
Show Gist options
  • Save taimursaeed/c84711a6ae72359d46b27177942831f8 to your computer and use it in GitHub Desktop.
Save taimursaeed/c84711a6ae72359d46b27177942831f8 to your computer and use it in GitHub Desktop.
Wait for CSS transition to complete
// wait for css transition to complete
$(".class").on(
"transitionend webkitTransitionEnd oTransitionEnd otransitionend MSTransitionEnd",
function() {
$(this).css({
//do stuff
});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment