I\'m building a website with Bootstrap\'s Popover and I can\'t figure out how to make the popover appear on hover instead of click.
All I want to do is have a popove
Set the trigger option of the popover to hover instead of click, which is the default one.
trigger
hover
click
This can be done using either data-* attributes in the markup:
data-*
Popover
Or with an initialization option:
$("#popover").popover({ trigger: "hover" });
Here's a DEMO.