I am trying to show a bootstrap tooltip on hover over an image. I have a text in that tooltip that i need to make it bold.
I tried this from the mentioned source, but didnt work form me..
<button class="infoTipsBox" type ="button" data-toggle="tooltip" data-placement="right"data-original-title='<b>big tooltip</b>'>
</button>
Js:
$(function () {
$('[data-toggle="tooltip"]').tooltip();
});
What im i doing wrong??
In the above text in the title
attribute, I am trying to make the "bootstrap tooltip" in bold font and rest in normal font. How can i achieve this?