Skip to content

Instantly share code, notes, and snippets.

@anthonyshort
Created February 4, 2014 23:37
Show Gist options
  • Save anthonyshort/8814677 to your computer and use it in GitHub Desktop.
Save anthonyshort/8814677 to your computer and use it in GitHub Desktop.
var main = document.querySelector('#main-nav');
parent.addEventListener('click', function(e){
if(e.target.matches('.toggleNav')) {
e.preventDefault();
main.classList.toggle('in');
}
});
@davidkaneda
Copy link

classList.toggle won't work for older IE, afaik

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment