i have several buttons and i need a popover for each.
i want it like this:
when my user click on one of them, i want others to be hidden. so only one popover is show
When an icon is clicked and has open the corresponding popover then it has a value that begins with "popover*" called aria-describedby.
So you find this icons and trigger click on them but not on the icon which is clicked now.
$('.icon-info').click(function(){
$(".icon-info[aria-describedby*='popover']").not(this).trigger('click');
});