Skip to content

Instantly share code, notes, and snippets.

@myvitaliy
Last active August 22, 2016 19:51
Show Gist options
  • Save myvitaliy/08a643fe93d7024b2cae33b093ce5d76 to your computer and use it in GitHub Desktop.
Save myvitaliy/08a643fe93d7024b2cae33b093ce5d76 to your computer and use it in GitHub Desktop.
js menu mobile with coursre
var pull = $('#pull');
menu = $('.menu ul');
menuHeight = menu.height();
$(pull).on('click', function(e) {
e.preventDefault();
menu.slideToggle();
});
$(window).resize(function(){
var w = $(window).width();
if(w > 320 && menu.is(':hidden')) {
menu.removeAttr('style');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment