Skip to content

Instantly share code, notes, and snippets.

@wireinet
Created January 7, 2020 22:04
Show Gist options
  • Save wireinet/2d511eac0598b8946544cc7a56d207a2 to your computer and use it in GitHub Desktop.
Save wireinet/2d511eac0598b8946544cc7a56d207a2 to your computer and use it in GitHub Desktop.
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