Ben’s Stamina Factory

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

document.addEventListener('DOMContentLoaded', function() { // Get all containers with the class 'dropdown-container' var containers = document.querySelectorAll('.dropdown-container'); // Loop through each container containers.forEach(function(container) { container.addEventListener('click', function() { // Toggle 'active' class on the clicked container this.classList.toggle('active'); // Remove 'active' class from all other containers containers.forEach(function(otherContainer) { if (otherContainer !== container) { otherContainer.classList.remove('active'); } }); }); }); });