Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ziadoz/3079481 to your computer and use it in GitHub Desktop.
Save ziadoz/3079481 to your computer and use it in GitHub Desktop.
jQuery Capture CSS3 Transition End Event
$(document).ready(function() {
$('div').on('transitionend MSTransitionEnd webkitTransitionEnd oTransitionEnd', function(event) {
// Do stuff after transition
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment