Turn the Tooltip Bootstrap functionality off
You can’t disable tooltips that way because it has no event listener on the body. Instead, you can disable the tooltips themselves using the code below. $(‘[rel=tooltip]’).tooltip() // Init tooltips $(‘[rel=tooltip]’).tooltip(‘disable’) // Disable tooltips $(‘[rel=tooltip]’).tooltip(‘enable’) // (Re-)enable tooltips $(‘[rel=tooltip]’).tooltip(‘destroy’) // Hide and destroy tooltips Edit: For Bootstrap 4, the ‘destroy’ command has been replaced by … Read more