I want to pass two anonymous functions as arguments for jQuery\'s hover, like so:
$(\'element\').hover( function() { // do stuff on mouseover }, fu
Another way is to use backslash after the caller function, the comma should be indented correctly.
$('element').hover \ -> # do stuff on mouseover , -> # do stuff on mouseout