Skip to content

Instantly share code, notes, and snippets.

@zdimaz
Last active February 15, 2019 14:02
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 zdimaz/1b09692c226935e2987d3608bea5cb12 to your computer and use it in GitHub Desktop.
Save zdimaz/1b09692c226935e2987d3608bea5cb12 to your computer and use it in GitHub Desktop.
click triger outside
$(document).on('click', function(e) {
if (!$(e.target).closest(".search-header, .search-header-dropdown").length) {
$(".search-header-dropdown").slideUp();
}
e.stopPropagation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment