Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Created January 5, 2014 21:34
Show Gist options
  • Save adikahorvath/8274231 to your computer and use it in GitHub Desktop.
Save adikahorvath/8274231 to your computer and use it in GitHub Desktop.
close when click next to layer
$('.overlay').click(function(e){
if (e.target == e.currentTarget) {
$(this).hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment