Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save slavapas/82ffbbe079b0b7d83cf071319f8d637b to your computer and use it in GitHub Desktop.
Save slavapas/82ffbbe079b0b7d83cf071319f8d637b to your computer and use it in GitHub Desktop.
How to hide dropdown menu on click outside of the element in jQuery
$(document).on("click", function(event){
var $trigger = $(".dropdown");
if($trigger !== event.target && !$trigger.has(event.target).length){
$(".dropdown-menu").slideUp("fast");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment