Skip to content

Instantly share code, notes, and snippets.

@flagoworld
Created December 10, 2011 01:55
Show Gist options
  • Save flagoworld/1454245 to your computer and use it in GitHub Desktop.
Save flagoworld/1454245 to your computer and use it in GitHub Desktop.
sliding menus
$(document).ready(function()
{
$('.navSub>li>span').mousedown(function()
{
if($(this).parent().find('.navSubSub').is(':hidden'))
{
$(this).addClass('open');
$(this).parent().find('.navSubSub').slideDown();
}else
{
$(this).removeClass('open');
$(this).parent().find('.navSubSub').slideUp();
}
});
$('.navSub>li>.sel').mousedown();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment