Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
document.addEventListener('DOMContentLoaded', function() { const parentItems = document.querySelectorAll('.no-click > a'); parentItems.forEach(function(item) { item.addEventListener('click', function(e) { e.preventDefault(); // Stopper linket fra at navigere const dropdown = item.nextElementSibling; if(dropdown) { dropdown.classList.toggle('show'); // Åbner/lukker dropdown } }); }); });
Skip to contentWelcome to WordPress. This is your first post. Edit or delete it, then start writing!