Onmouse hover ,popover is showing only title not the image
Code :
<script type="text/javascript">
$(document).ready(function(){
var img ='<img src="/assets/Excel_1.png">';
$("#blob").popover({ title: 'Format for Excel sheet', content: img , trigger:'hover' });
});
</script>
In Body:
<i href="#" id="blob" class="icon-info-sign" rel="popover" style="margin-top: 300px"> </i>
But not showing image…..
Thanks
Got the solution of this simple problem…
Just this change made the need possible
Thanks..