Skip to content

Instantly share code, notes, and snippets.

@deadlyhifi
Created July 27, 2015 04:57
Show Gist options
  • Save deadlyhifi/e3c8f76e5b66505b4350 to your computer and use it in GitHub Desktop.
Save deadlyhifi/e3c8f76e5b66505b4350 to your computer and use it in GitHub Desktop.
Menu toggle
window.onload = function() {
document.getElementById("js-toggle").onclick = function () {
this.classList.toggle("is-active");
document.getElementById("js-nav").classList.toggle("is-visible");
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment