Electric Spa Square - 2m
Southland POA // Script to toggle collapsible content with smooth transition const collapsibles = document.querySelectorAll('.collapsible'); collapsibles.forEach((collapsible) =>collapsible.addEventListener('click', function () this.classList.toggle('active'); const content = this.nextElementSibling; if (content.style.maxHeight) // If the content is already open, close it content.style.maxHeight = null; else // Open the content with smooth transition content.style.maxHeight = content.scrollHeight "px"; ); )
0
0
×