Skip to content

Instantly share code, notes, and snippets.

@baladkb
Last active September 7, 2018 07:52
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 baladkb/06853093975f9ab439236a59bc7415ef to your computer and use it in GitHub Desktop.
Save baladkb/06853093975f9ab439236a59bc7415ef to your computer and use it in GitHub Desktop.
Find and remove class
$('.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