Created
March 20, 2020 09:53
-
-
Save taimursaeed/c84711a6ae72359d46b27177942831f8 to your computer and use it in GitHub Desktop.
Wait for CSS transition to complete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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