How to make bootstrap tooltip remain visible till the link is clicked

Here is the solution http://jsfiddle.net/testtracker/QsYPv/8/

Added the option “trigger”

$('p a').tooltip({placement: 'bottom',trigger: 'manual'}).tooltip('show');

then, with this line

$('p a').on('click',function(){$(this).tooltip('destroy');});

destroy tooltip on click.

Leave a Comment