<div class="pop" style="display: none">
'Dynamic content here'
</div>
<a href="#" class="opinionmap" rel="popover"><i class="icon-eye-open"></i></a>
$('.opinionmap').mouseenter(function() {
$(this).popover({title: 'Current Opinion', trigger: 'hover', html: 'true', content: $(this).siblings('.pop').html(), placement: 'top'});
});
But the popover is working only after the second mouseenter event. I have viewed many related questions but none helped. Seeking answers!!!