Skip to content

Instantly share code, notes, and snippets.

@jaylett
Last active December 19, 2015 07:19
Show Gist options
  • Save jaylett/5918358 to your computer and use it in GitHub Desktop.
Save jaylett/5918358 to your computer and use it in GitHub Desktop.
(function() {
var menuOpen = false;
$('.hamburger').click(function(){
if( menuOpen ) {
menuOpen = false;
$('#header ul').slideUp(function() {
$('#header ul').removeAttr("style");
});
} else {
menuOpen = true;
$('#header ul').slideDown();
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment