I'm working with bootstrap 3, I'm trying to make the popover plugin opened with the hover method, but i can't do it stay opened if the cursor is inside the popover. Any idea? Thanks a lot
This is my code for the popover:
$(".info_pop").popover({
html: true,
trigger: 'hover',
title: "Title",
placement: "top",
content: 'Example'
});
I found the answer HERE. Thank you the same.