Athenee Hotel Bangkok - Virtual Tour
Loading Virtual Tour...
Please wait while we initialize the 360Β° experience
// Utility function to close the entire hamburger menu function closeHamburgerMenu() { const navbarToggler = document.querySelector('.navbar-toggler'); const navbarCollapse = document.querySelector('.navbar-collapse'); if (navbarToggler && navbarCollapse.classList.contains('show')) { navbarToggler.click(); // Simulate a click to close the menu } } // Add event listeners to menu items to close the entire hamburger menu on mobile document.addEventListener('DOMContentLoaded', () => { const isMobile = window.matchMedia('(max-width: 991.98px)').matches; // Bootstrap breakpoint for mobile if (isMobile) { const menuItems = document.querySelectorAll('#menu .nav-link, #menu .dropdown-item'); menuItems.forEach(item => { item.addEventListener('click', () => { closeHamburgerMenu(); }); }); } });
Skip to main contentPlease wait while we initialize the 360Β° experience