Skip to content

Instantly share code, notes, and snippets.

@golman
Created July 7, 2013 14:21
Show Gist options
  • Save golman/5943628 to your computer and use it in GitHub Desktop.
Save golman/5943628 to your computer and use it in GitHub Desktop.
jQuery: Close PopUp
$("body").click(function(e) {
if ($(e.target).closest(".popup").length==0) $(".popup").css("display","none");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment