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
Working Solution
$(document).on("click",function() { setTimeout(function() { $('[data-toggle="tooltip"]').tooltip('hide'); },500); // Hides tooltip in 500 milliseconds });