Hey, I have been trying to use bootstrap tooltip and popover with the buttons but it is not working at all. I tried to use it with attribute and using jquery too. Is this a bug?
Anyone else having same problem?
I think there are some javascript dependencies you need to include
Have you initialize popover in your scripts?
From bootstrap documentation:
For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning you must initialize them yourself.
If not, try:
$('[data-toggle="popover"]').popover()
Can you also check this thread about jQueryUI and Botstrap tooltips:
http://stackoverflow.com/questions/13731400/jqueryui-tooltips-are-competing-with-twitter-bootstrap
Closing due to inactivity
Most helpful comment
Have you initialize popover in your scripts?
From bootstrap documentation:
If not, try:
$('[data-toggle="popover"]').popover()