Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wanghailei
Created February 21, 2012 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wanghailei/1877164 to your computer and use it in GitHub Desktop.
Save wanghailei/1877164 to your computer and use it in GitHub Desktop.
JS: Mouse Enter and Leave Effect
function hover_line() {
$('#left li').mouseenter(function() {
$(this).addClass("hovered");
}).mouseleave(function() {
$(this).removeClass("hovered");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment