Created
May 22, 2012 20:56
-
-
Save akb/2771582 to your computer and use it in GitHub Desktop.
coffescript hover
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
over = -> | |
console.log "hovering over minneapolis" | |
myshow "contact-us-minneapolis" | |
out = -> | |
console.log "out hovering over minneapolis" | |
myhide "contact-us-minneapolis" | |
$("#contact-minneapolis").hover over, out | |
-or- | |
v--------- this space is important | |
$("#contact-minneapolis").hover (-> | |
console.log "hovering over minneapolis" | |
console.log "contact-us-minneapolis" | |
), (-> | |
console.log "out hovering over minneapolis" | |
console.log "contact-us-minneapolis" | |
) | |
---- mouseover ---- | |
$("#contact-minneapolis").mouseover -> | |
console.log "hovering over minneapolis" | |
myshow "contact-us-minneapolis" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment