Can I use complex HTML with Twitter Bootstrap's Tooltip? Can I use complex HTML with Twitter Bootstrap's Tooltip? javascript javascript

Can I use complex HTML with Twitter Bootstrap's Tooltip?


This parameter is just about whether you are going to use complex html into the tooltip. Set it to true and then hit the html into the title attribute of the tag.

See this fiddle here - I've set the html attribute to true through the data-html="true" in the <a> tag and then just added in the html ad hoc as an example.


Another solution to avoid inserting html into data-title is to create independant div with tooltip html content, and refer to this div when creating your tooltip :

<!-- Tooltip link --><p><span class="tip" data-tip="my-tip">Hello world</span></p><!-- Tooltip content --><div id="my-tip" class="tip-content hidden">    <h2>Tip title</h2>    <p>This is my tip content</p></div><script type="text/javascript">    $(document).ready(function () {        // Tooltips        $('.tip').each(function () {            $(this).tooltip(            {                html: true,                title: $('#' + $(this).data('tip')).html()            });        });    });</script>

This way you can create complex readable html content, and activate as many tooltips as you want.

live demo here on codepen


Just as normal, using data-original-title:

Html:

<div rel='tooltip' data-original-title='<h1>big tooltip</h1>'>Visible text</div>

Javascript:

$("[rel=tooltip]").tooltip({html:true});

The html parameter specifies how the tooltip text should be turned into DOM elements. By default Html code is escaped in tooltips to prevent XSS attacks. Say you display a username on your site and you show a small bio in a tooltip. If the html code isn't escaped and the user can edit the bio themselves they could inject malicious code.