Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save flayder/97e18c2322006c35b9df4985a3a5f68d to your computer and use it in GitHub Desktop.
Save flayder/97e18c2322006c35b9df4985a3a5f68d to your computer and use it in GitHub Desktop.
$('.openpopup').click(function(e){
var $pop = $('#modal');
if($($pop).css('display') != 'block') {
$pop.fadeIn();
var firstClick = true;
$(document).bind('click.myEvent', function(e) {
if (!firstClick && $(e.target).closest('#popup').length == 0 || $(e.target).closest('.close').length == 1){
$pop.fadeOut();
$(document).unbind('click.myEvent');
}
firstClick = false;
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment