Skip to content

Instantly share code, notes, and snippets.

@atomrli
Last active September 23, 2019 14:14
Show Gist options
  • Select an option

  • Save atomrli/f5a938c31a170fb38bd3637be60244b7 to your computer and use it in GitHub Desktop.

Select an option

Save atomrli/f5a938c31a170fb38bd3637be60244b7 to your computer and use it in GitHub Desktop.
клик внеобласти попап окна
$(document).mouseup(function (e){
var checkboxContainer = $('.popup.show .popup-container');
if (!checkboxContainer.is(e.target)
&& checkboxContainer.has(e.target).length === 0) {
$('.popup').removeClass('show');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment