Skip to content

Instantly share code, notes, and snippets.

Created March 1, 2012 04:59
Show Gist options
  • Save anonymous/1947404 to your computer and use it in GitHub Desktop.
Save anonymous/1947404 to your computer and use it in GitHub Desktop.
$("#nav li :not(.selected)").hover(
function () {
$('.selected').addClass("selectedHover");
},
function () {
$('.selected').removeClass("selectedHover");
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment