Skip to content

Instantly share code, notes, and snippets.

@phongjalvn
Created July 7, 2010 07:39
Show Gist options
  • Save phongjalvn/466436 to your computer and use it in GitHub Desktop.
Save phongjalvn/466436 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('.menu li').hover(function(){
$('ul',$(this)).stop(1,1).slideDown();
},function(){
$('ul',$(this)).stop(1,1).slideUp();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment