Skip to content

Instantly share code, notes, and snippets.

@bradpotter
Created August 12, 2013 05:29
Show Gist options
  • Save bradpotter/6208431 to your computer and use it in GitHub Desktop.
Save bradpotter/6208431 to your computer and use it in GitHub Desktop.
jQuery script for Header Navigation Menu
jQuery(document).ready(function($) {
$("#menu-header-navigation").before('<div id="header-menu-icon"></div>');
$("#header-menu-icon").click(function() {
$("#menu-header-navigation").slideToggle();
});
$(window).resize(function(){
if(window.innerWidth > 768) {
$("#menu-header-navigation").removeAttr("style");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment