Skip to content

Instantly share code, notes, and snippets.

@elioverbey
Last active August 29, 2015 14:03
Show Gist options
  • Save elioverbey/7c33bad3ebdc53c661c4 to your computer and use it in GitHub Desktop.
Save elioverbey/7c33bad3ebdc53c661c4 to your computer and use it in GitHub Desktop.
jQuery(function( $ ){
$("header .genesis-nav-menu").addClass("responsive-menu").before('<div id="responsive-menu-icon"></div>');
$("#responsive-menu-icon").click(function(){
$("header .genesis-nav-menu").slideToggle();
});
$(window).resize(function(){
if(window.innerWidth > 600) {
$("header .genesis-nav-menu").removeAttr("style");
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment