I want to show the bootstrap popover on hover. In popover content i have list action items. When i levave the element which i used to show the popver its getting disappeared. I want it to dispaly until i'm on the popover.
is it posible?
<a href="#" class="btn btn-info" data-toggle="popover" data-content="hello" data-title="Welcome" data-placement="left"><i class="fa fa-anchor"></i> Goto</a> the Js is
$('[data-toggle=popover]').popover({ plcement:"left", title:"Heloo", content:"Welcome" }); How to have the popover remains present until i'm leaving from the popover content?