On hover of bootstrap popover, the content is not clickable. The popover disappears immediately after hover.
<div class="cin-help" ng-if="!isCinUser">
<strong><span>Sevrity</span></strong>
<span ng-show="isHelpTextShown" class="icon-question-circle icon-color text-large cursor-ptr" id="sev1-help" data-trigger="hover" popover-placement="right" data-toggle="popover" data-original-title='' title='' popover-html="sev1-Note" ></span>
<div class="hide" id="sev1-Note" ng-show="isHelpTextShown"><span ><a href="http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/placement-groups.html" target="_blank">Click here...</a></span></div>
</div>
The Js code for it is:
$(document).ready(function(){
$('#simplified-form').on('hover','#sev1-help',function(){
$('#sev1-help').popover({
html:true,
content: function() {
return $('#sev1-Note').html();
}
});
});
});
I'm unable to get the popover stay on hover so that the link inside is clickable. Can anyone suggest a method?