Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created April 13, 2014 19:35
Show Gist options
  • Save unknownuser88/10598964 to your computer and use it in GitHub Desktop.
Save unknownuser88/10598964 to your computer and use it in GitHub Desktop.
hide popover on doc click
$(document).click(function(e) {
if (($('.popover').has(e.target).length == 0) || $(e.target).is('.close')) {
$('.add_btn').popover('hide');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment