Skip to content

Instantly share code, notes, and snippets.

@jamiemitchell
Created April 20, 2018 01:20
Show Gist options
  • Select an option

  • Save jamiemitchell/56e1beaf0c99852515e00e21c0b3dc7a to your computer and use it in GitHub Desktop.

Select an option

Save jamiemitchell/56e1beaf0c99852515e00e21c0b3dc7a to your computer and use it in GitHub Desktop.
$(document).ready(function() {
var body = $('body');
var hamburger = $('.offscreen-menu-toggle');
var nav = $('.off-screen-content');
hamburger.click(function() {
nav.toggleClass('open');
hamburger.toggleClass('active');
body.toggleClass('no-scroll');
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment