Last active
September 7, 2018 07:52
-
-
Save baladkb/06853093975f9ab439236a59bc7415ef to your computer and use it in GitHub Desktop.
Find and remove class
This file contains 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
$('.dropdown-col-filter').click(function(e) { | |
e.stopPropagation(); | |
}); | |
$(document).click(function() { | |
$(this).find('.dropdown-content-col-filter').removeClass("show"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment