Skip to content

Instantly share code, notes, and snippets.

@Manoz
Created April 12, 2014 08:22
Show Gist options
  • Save Manoz/10524480 to your computer and use it in GitHub Desktop.
Save Manoz/10524480 to your computer and use it in GitHub Desktop.
$(document).click(function(event) {
if ($('.popup-content').is(":visible")) {
$('.popup-content').fadeOut('slow', function() {})
}
});
$('#popup').click(function(event) {
if ($('.popup-content').is(":visible")) {
$('.popup-content').fadeOut('slow', function() {})
} else {
$('.popup-content').fadeIn('slow', function() {})
}
event.stopPropagation();
});
$('.popup-content').click(function(event) {
event.stopPropagation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment