My goal is to show HTML content in a tooltip title, but instead, plain text is being displayed.
<a href="javascript:void(0);" data-html="true" data-toggle="tooltip1" title="<p><label>package_qty</label> (0 status)</p>">0</a>
Here is the initialization:
$('[data-toggle="tooltip1"]').tooltip();
Despite setting data-html
value to true
, it doesn't seem to be working as intended.
The version of Bootstrap I am using is 3.3.7
.