Skip to content

Instantly share code, notes, and snippets.

@francisrupert
Created October 17, 2019 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save francisrupert/341c58e6a233e08128fe4e0d88380fba to your computer and use it in GitHub Desktop.
Save francisrupert/341c58e6a233e08128fe4e0d88380fba to your computer and use it in GitHub Desktop.
js toggle menu
const toggleMenu = document.querySelector(".navigation button");
const menu = document.querySelector(".navigation ul");;
toggleMenu.addEventListener("click", function () {
const open = JSON.parse(toggleMenu.getAttribute("aria-expanded"));
toggleMenu.setAttribute("aria-expanded", !open);
menu.hidden = !menu.hidden;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment