Skip to content

Instantly share code, notes, and snippets.

@JeffreyWay
Forked from jacekd/main.js
Created October 27, 2012 20:26
Show Gist options
  • Save JeffreyWay/3966015 to your computer and use it in GitHub Desktop.
Save JeffreyWay/3966015 to your computer and use it in GitHub Desktop.
*
(function(){
var menuBar = $(".menu-bar ul");
var menuActive = menuBar.find("li.active");
menuBar.hover(function() {
menuActive.toggleClass("active");
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment