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
Inside your document ready function use this
$(document).ready(function(){ $('[data-toggle="tooltip"]').tooltip({ trigger : 'hover' }); });