I have been utilizing a similar solution found at http://jsfiddle.net/cSSUA/209/ to add tooltips to disabled buttons. However, I am encountering an issue specifically in Internet Explorer (IE11).
The workaround involves wrapping the button within a span:
<span class="tooltip-wrapper" title="Nessun esito selezionato">
<button class="btn btn-primary" type="button" disabled><i class="fa fa-check"></i> Rifiuta</button>
</span>
In the CSS:
.tooltip-wrapper {
display: inline-block; /* display: block works as well */
}
.tooltip-wrapper .btn[disabled] {
/* don't let button block mouse events from reaching wrapper */
pointer-events: none;
}
And in jQuery:
$('.tooltip-wrapper').tooltip({position: "bottom"});
While I can see that the tooltip is being created in the DOM explorer, I am unable to view the actual tooltip itself.
Please excuse any errors in my English and my limited knowledge of HTML/CSS/JavaScript/jQuery/Bootstrap.