Tuesday, July 28, 2015

Twitter bootstrap popover close all before opening a new one

Here a simple solution

$('.link-popover').click(function(){
    $('.link-popover').not(this).popover('hide');
});

Thanks

No comments:

Post a Comment

TinyMCE Insert/Edit link not editable

 To fix this add  e.stopImmediatePropagation()  as below. $(document).on('focusin', function (e) {             if ($(e.target).close...