HTML
xxxxxxxxxx
1
<button title="Test tooltip" class="btn btn-primary">
2
Test button
3
</button>
CSS
1
1
JS
xxxxxxxxxx
1
$("[title]").tooltip({
2
placement: 'bottom',
3
delay: { "show": 500, "hide": 100 },
4
offset: '0 10',
5
template: '<div class="tooltip" role="tooltip"><div class="arrow"></div><div class="tooltip-inner bg-success rounded-pill shadow"></div></div>'
6
});
Console errors: 0