Skip to content

Instantly share code, notes, and snippets.

@BlakeWilliams
Forked from anonymous/gist:1947404
Created March 1, 2012 05:00
Show Gist options
  • Save BlakeWilliams/1947405 to your computer and use it in GitHub Desktop.
Save BlakeWilliams/1947405 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