<script> // Get a reference to the button element const button = document.querySelector('.fr-toggle-button-alpha'); // Add a click event listener to the button button.addEventListener('click', function () { // Get the current value of the aria-expanded attribute const currentAriaValue = button.getAttribute('aria-expanded'); // Toggle the aria-expanded attribute value if (currentAriaValue === 'true') { button.setAttribute('aria-expanded', 'false'); } else { button.setAttribute('aria-expanded', 'true'); } }); </script>
Pricing Plans
Blog
Contact Us
1124 Horses