const hamburgerMenuBtn = document.querySelector("#hamburger-btn");
const hamburgerMenu = document.querySelector("#hamburger-nav-menu");
// toggle display none class
hamburgerMenuBtn.addEventListener("click", () => {
const classes = hamburgerMenu.classList;
classes.toggle("d-none");
});
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter