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
You can also use below method to hide tooltip on mouseleave, As below:
jQuery("body").on("mouseleave", ".has-tooltip", function(){ jQuery(this).blur(); });