Skip to content

Instantly share code, notes, and snippets.

@terehof
Created March 14, 2015 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terehof/19b15d5efb0e7bbf362a to your computer and use it in GitHub Desktop.
Save terehof/19b15d5efb0e7bbf362a to your computer and use it in GitHub Desktop.
js snippet
if(window.matchMedia('(max-width: 768px)').matches) {
$('.sub-menu-button').on('click',function(e) {
var subMenu = $(this).next('.sub-navigation');
if(subMenu.is(':visible')) {
subMenu.slideUp();
} else {
subMenu.slideDown();
}
return false;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment