Skip to content

Instantly share code, notes, and snippets.

@CoolS2
Created August 30, 2016 09:27
Show Gist options
  • Select an option

  • Save CoolS2/505686541be0c37aa88b83436074bd32 to your computer and use it in GitHub Desktop.

Select an option

Save CoolS2/505686541be0c37aa88b83436074bd32 to your computer and use it in GitHub Desktop.
$(document).mouseup(function (e){
var lang = $(".dropdown-lang");
if (!lang.is(e.target) // if the target of the click isn't the container...
&& lang.has(e.target).length === 0) // ... nor a descendant of the container
{
lang.hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment