Bootstrap button tooltip hide on click
Fixed it by using. $(document).ready(function(){ $(‘[rel=tooltip]’).tooltip({ trigger: “hover” }); }); The problem was that focus stays on the button when the modal is open. Changing the trigger to hover solves the problem.