Skip to content

Instantly share code, notes, and snippets.

@barlas
Created April 24, 2015 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barlas/eb3161fcee7c57259799 to your computer and use it in GitHub Desktop.
Save barlas/eb3161fcee7c57259799 to your computer and use it in GitHub Desktop.
jQuery - Close tooltip with a click apart from tooltip wrapper.
$(document).click(function(e) {
if( !$(e.target).closest('.tooltip-wrapper').length ) {
if( $('.tooltip').hasClass('active') ) {
$('.tooltip').hide();
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment