I am using the tooltip tool in Bootstrap 3.x in my web app to show helpful info. It works in this way:
$('[data-toggle="tooltip"]').tooltip({
'animation': true,
'placement': 'top',
'trigger': 'hover',
'html':true,
'container': 'body'
});
Please note that I have to use hover to trigger the tooltip. Now I need to add a new tooltip and its tooltip text contains a HTML link. A visitor should be able to mouse over the tooltip text to click the link.
The problem is that when a visitor moves his mouse, the tooltip text disappears before he can reach the tooltip text area.