Dieser Inhalt ist passwortgeschützt. Bitte gib unten das Passwort ein, um ihn anzeigen zu können.

document.addEventListener('DOMContentLoaded', function() { var accordionLinks = document.querySelectorAll('a.elementor-accordion-title:not([href])'); accordionLinks.forEach(function(link, index) { var tabId = link.closest('[id]'); var anchorId = tabId ? tabId.id : 'faq-item-' + (index + 1); link.setAttribute('href', '#' + anchorId); link.addEventListener('click', function(e) { e.preventDefault(); }); }); var toggleLinks = document.querySelectorAll('a.elementor-toggle-title:not([href])'); toggleLinks.forEach(function(link, index) { var tabId = link.closest('[id]'); var anchorId = tabId ? tabId.id : 'toggle-item-' + (index + 1); link.setAttribute('href', '#' + anchorId); link.addEventListener('click', function(e) { e.preventDefault(); }); }); });