Skip to content

Instantly share code, notes, and snippets.

View Imaginering's full-sized avatar

Vasco Egthuijsen Imaginering

View GitHub Profile
document.querySelectorAll('.nav-toggle').forEach(toggle => {
toggle.addEventListener('click', () => {
const isExpanded = toggle.getAttribute('aria-expanded') === 'true';
toggle.setAttribute('aria-expanded', String(!isExpanded));
toggle.setAttribute('aria-label', isExpanded ? 'Open menu' : 'Close menu');
});
});