Skip to content

Instantly share code, notes, and snippets.

@eszterkv
Created April 16, 2025 08:52
Show Gist options
  • Save eszterkv/5c7366f315956660374c0b5d7679ac50 to your computer and use it in GitHub Desktop.
Save eszterkv/5c7366f315956660374c0b5d7679ac50 to your computer and use it in GitHub Desktop.
hmoa menu quickfix
var menu = document.querySelector('.mobile-menu');
var btn = document.querySelector('.nav-toggle');
btn.addEventListener('click', function() {
if (menu.hasAttribute('style')) {
var display = menu.style.display;
menu.setAttribute('style', `display: ${display === 'none' ? 'initial' : 'none'}`);
} else {
menu.setAttribute('style', 'display: initial');
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment