Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save koloda/94fc07143b45acd08d17 to your computer and use it in GitHub Desktop.
Save koloda/94fc07143b45acd08d17 to your computer and use it in GitHub Desktop.
bootstrap 2 hide all popovers when new activate
$(function(){
$('a.class').popover({'title':'Title', 'content':$('#content').html(), 'html':true, 'placement':'bottom'});
$('a.class').live('click', function(){
$('a.class').not(this).popover('hide');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment