Scoot homepage with HTML, CSS, JS

Please log in to post a comment
Log in with GitHubCommunity feedback
- @MarziaJalili
Whoa, ladies and gentlemen! I just found the hidden gem I’d been searching for! 🎉🥳
Yo, I’m such a big fan of your work — for real. 🫣
🌟 A tiny tweak for better UX, champ:
🤔 Wouldn’t it be cooler if the navigation menu could close automatically when you click outside of it?
✅ You could handle it using document.addEventListener, which listens for all clicks on the entire document.
✅ Here's how you can code it out:
document.addEventListener('click', (event) => { const isClickInside = topNavMenu.contains(event.target); if (!isClickInside) { closeMobileMenu() } }
Kinda hesitant to drop you feedback, tho 😅
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord