document.addEventListener('DOMContentLoaded', function () { // Alle Tooltip-Elemente finden const tooltipElements = document.querySelectorAll( '[data-bs-toggle="tooltip"]' ); // Tooltips initialisieren tooltipElements.forEach(function (el) { new bootstrap.Tooltip(el, { trigger: 'hover click', placement: el.getAttribute('data-bs-placement') || 'top', boundary: 'window' }); }); // Tooltip schließen bei Klick außerhalb (wichtig für Mobile) document.addEventListener('click', function (e) { tooltipElements.forEach(function (el) { if (!el.contains(e.target)) { const tooltip = bootstrap.Tooltip.getInstance(el); if (tooltip) { tooltip.hide(); } } }); }); });

Pressetext

pressetext241