Skip to content

Instantly share code, notes, and snippets.

@rolka
Created May 8, 2013 17:21
Show Gist options
  • Save rolka/5542013 to your computer and use it in GitHub Desktop.
Save rolka/5542013 to your computer and use it in GitHub Desktop.
jQuery: CSS hover
jQuery(function($) {
$('.ai-header-primary-navigation-wrapper .container .row .span12 .pull-right .inline li:last-child').hover(function() {
$(this).css('background', '#eef1f3')
},function() {
$(this).css('color', '#fff')
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment