Skip to content

Instantly share code, notes, and snippets.

@KarasAlina
Created August 29, 2016 12:13
Show Gist options
  • Save KarasAlina/ba949140f17911df32e23351ab115677 to your computer and use it in GitHub Desktop.
Save KarasAlina/ba949140f17911df32e23351ab115677 to your computer and use it in GitHub Desktop.
Закрыть блок при клике вне его пределов
$(document).on('click', function(e) {
if (!$(e.target).closest(".parent_block").length) {
$('.toggled_block').hide();
}
e.stopPropagation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment