Skip to content

Instantly share code, notes, and snippets.

@dgmike
Created May 5, 2010 12:11
Show Gist options
  • Save dgmike/390692 to your computer and use it in GitHub Desktop.
Save dgmike/390692 to your computer and use it in GitHub Desktop.
Um exemplo para usar em menus com submenus
$(function(){
$('.menu > li > a').hover(function(){
$(this).parent().find('li').toggle()
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment