document.addEventListener("DOMContentLoaded", function () { const selector = document.querySelector(".country-selector"); if (!selector) return; const button = selector.querySelector(".country-btn"); const label = selector.querySelector(".selected-country"); const links = selector.querySelectorAll(".country-menu a"); // Toggle dropdown button.addEventListener("click", function (e) { e.stopPropagation(); selector.classList.toggle("open"); }); // Country click links.forEach(link => { link.addEventListener("click", function (e) { e.preventDefault(); label.textContent = this.textContent.trim(); selector.classList.remove("open"); setTimeout(() => { window.location.href = this.getAttribute("href"); }, 150); }); }); // Close on outside click document.addEventListener("click", function () { selector.classList.remove("open"); }); });

AKSSAI Latest Insights

Our resources for managing your business better