I'm using this bootstrap multi-select. My goal is to display tooltip when there is a mouseover over the menu items.
It seems the multiselect prevent the tooltip to be displayed.
HTML:
<!-- language: lang-html --><select name="menu[]" id="menu" class="multiselect" multiple="multiple">
<optgroup label="Items">...
<option id='one' value='1' title="Popover one"
data-toggle="tooltip" data-content="content one">1</option>
<option id='two' value='2' title="Popover two"
data-toggle="tooltip" data-content="content two">2</option>
</optgroup>
</select>
JS:
<!-- language: lang-js -->$('#menu').multiselect({
maxHeight: 400,
numberDisplayed: 1,
nonSelectedText: 'All',
enableCaseInsensitiveFiltering: true,
});
$("#one").tooltip({
placement: 'right'
});
$("#two").tooltip({
placement: 'right'
});
How can I achieve tooltip in multiselect?