Skip to content

Instantly share code, notes, and snippets.

@jrallison
Created April 14, 2009 06:02
Show Gist options
  • Save jrallison/94999 to your computer and use it in GitHub Desktop.
Save jrallison/94999 to your computer and use it in GitHub Desktop.
jQuery("#pages ul li").hover(function(){
jQuery(this).stop(true).animate({
marginTop: "10px"
}, 250);
}, function(){
jQuery(this).stop(true).animate({
marginTop: "0px"
}, 250);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment