Skip to content

Instantly share code, notes, and snippets.

@clutchski
Forked from michaeldhopkins/gist:1603364
Created January 12, 2012 21:57
Show Gist options
  • Save clutchski/1603396 to your computer and use it in GitHub Desktop.
Save clutchski/1603396 to your computer and use it in GitHub Desktop.
$(document).ready ->
onHoverStart = ->
$(this).animate({backgroundColor:'#7c9344'},'fast')
onHoverEnd = ->
$(this).animate({backgroundColor:'#7c9344'},'fast')
$('#menu li a').hover(onHoverStart, onHoverEnd)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment