Is there a way to turn off bootstrap tooltip on my website? I activated it with the code below:
function activateTooltip() {
const toolTips = document.querySelectorAll('.tooltip');
toolTips.forEach(t => {
new bootstrap.Tooltip(t);
});
}
This function is coming from the minified Bootstrap file.