Created
April 24, 2015 13:14
-
-
Save barlas/eb3161fcee7c57259799 to your computer and use it in GitHub Desktop.
jQuery - Close tooltip with a click apart from tooltip wrapper.
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
$(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