Hello @kartik,
Set the trigger option of the popover to hover instead of click, which is the default one.
This can be done using either data-* attributes in the markup:
<a id="popover" data-trigger="hover">Popover</a>
Or with an initialization option:
$("#popover").popover({ trigger: "hover" });
Thank You!!