Skip to content

Instantly share code, notes, and snippets.

@MrMooky
Last active February 27, 2017 08:44
Show Gist options
  • Select an option

  • Save MrMooky/32b82d2c740a94143c2728acaecf00c0 to your computer and use it in GitHub Desktop.

Select an option

Save MrMooky/32b82d2c740a94143c2728acaecf00c0 to your computer and use it in GitHub Desktop.
$('html.touch #mainmenu .nav > li > a').each(function(){
var clicks = 0;
$(this).click(function(e){
var link = $(this).attr('href');
if(clicks == 0){
e.preventDefault();
var subnav = $(this).parent('li').children('ul');
subnav.slideDown(250);
} else {
window.location.href = link;
}
++clicks;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment