I\'m trying to use http://twitter.github.io/bootstrap/javascript.html#popovers. I can set the trigger to any one of click | hover | focus | manual. Is there a w
click | hover | focus | manual
When initializing your popover, you may pass multiple triggers; separate them with a space.
var options = { trigger: 'hover focus' } $('#has-popover').popover(options);