You can check for touch events before invoking init on bootstrap tooltip. This will allow you to disable the feature tooltipfor most touch devices, not just thinner touch screen devices such as mobile phones.
if(!('ontouchstart' in window))
{
$('#example').tooltip(options);
}
source
share