I have a problem with bootstrap\'s tooltip : When I click on a button, tooltip stays even if is the cursor is outside of the button. I have looked into the manual - Bootstra
If someone want's to setup a tooltip which will show for some time after click, here is how I did:
$('[data-toggle="tooltip"]').tooltip({ trigger : 'click'}) $('[data-toggle="tooltip"]').on('shown.bs.tooltip', function () { $(this).tooltip('hide') })