Answer by Shashikala for Bootstrap Popover on Image
Put attributes in jquery variable instead of tag <img class="icon" rel="popover" src="images/brandable.png"/> Add script as following <script> $('document').ready(function() { var...
View ArticleAnswer by dalcam for Bootstrap Popover on Image
this is over a year late, but i found this to work: Fiddler Link using this JS: $(function(){ $('[data-toggle=popover]').popover({ trigger: 'focus', html: true, title: 'Toolbox' }) }); And this html:...
View ArticleAnswer by cchiera for Bootstrap Popover on Image
For your code you have: <img class="icon" rel="popover" trigger: "hover" data-placement="top" data content="This is a popover"src="images/brandable.png"><br>Brandable</br></li>...
View ArticleAnswer by deau for Bootstrap Popover on Image
Perhaps the easiest way to do this uses the OnMouseOver and OnMouseOut events described in this answer: https://stackoverflow.com/a/10709196/121737 I would prefer to do this using one image, the same...
View ArticleBootstrap Popover on Image
So I have a list of icons, I'm trying to get a popover to activate when you hover over an icon, I can't seem to get it to work, any help would be appreciated. <img class="icon" rel="popover"...
View ArticleAnswer by Rai Akhtar Ali for Bootstrap Popover on Image
$(function(){$('#poper').popover({html: true,trigger:'focus',content: $('#pop')});});
View Article