Let's say I have a popover that contains links
<a>
and some of these links can open modal
.
The problem is that this popover is still active when modal is open. How to hide all active popovers when any modal show after clicking on those links inside this popover?
<div class="popover-content">
<ul class="popover-ul">
<li>
<a href="#" data-msg="<h4>OUT</h4><img src='yourlinkhere' alt='OUT'>" data-toggle="modal" data-target="#doc-modal" data-ok="data-ok">
OUT
</a>
</li>
</ul>