Skip to content

Instantly share code, notes, and snippets.

@bradpotter
Last active December 20, 2015 20:28
Show Gist options
  • Save bradpotter/6190348 to your computer and use it in GitHub Desktop.
Save bradpotter/6190348 to your computer and use it in GitHub Desktop.
jQuery script for Mobile Navigation Menu
jQuery(document).ready(function($) {
$("#menu-mobile-navigation").before('<div id="mobile-menu-icon"></div>');
$("#mobile-menu-icon").click(function() {
$(".menu-mobile").slideToggle();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment