Skip to content

Instantly share code, notes, and snippets.

@DenisLeblanc
Created July 1, 2014 23:23
Show Gist options
  • Save DenisLeblanc/37090b00048be5ae373a to your computer and use it in GitHub Desktop.
Save DenisLeblanc/37090b00048be5ae373a to your computer and use it in GitHub Desktop.
Allow clicking instead of hover for dropdown menus
//Allow clicking instead of hover for dropdown menus
$(document).ready( function(){
$('li.has_children > a').click( function(event){
event.stopPropagation();
$('.sub-menu').toggle();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment