Еще небольшой фикс. Закрытие остальных поповеров при открытии следующего,(кстати можно прикрутить и к ресайзу) мб кому понадобится:
$('body').on('click', function (e) {
$('.for-popover').each(function () {
//the 'is' for buttons that trigger popups
//the 'has' for icons and other elements within a button that triggers a popup
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
$(this).popover('hide');
return;
}
});
});