Skip to content

Instantly share code, notes, and snippets.

@jesgundy
Created March 31, 2014 16:08
Show Gist options
  • Save jesgundy/9895810 to your computer and use it in GitHub Desktop.
Save jesgundy/9895810 to your computer and use it in GitHub Desktop.
Bind to transition end JS event.
evts = 'transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd';
$menu.bind( evts, function() {
$menu.css('visibility', 'hidden');
$menu.unbind( evts );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment