Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't for the life of me figure this out or find a solution online. I am trying to figure out how to write a script in CoffeeScript from jQuery based JavaScript.

The script is this:

jQuery('.post-thumb a').hover( function() {
    jQuery(this).find('.overlay').fadeIn(150);
}, function() {
    jQuery(this).find('.overlay').fadeOut(150);
});

I initially tried rewriting that like this:

thumb_overlay =>
    $('.post-thumb a').hover
        => $(this).find('.overlay').fadeIn(150)
        ,=> $(this).find('.overlay').fadeOut(150)

But that didn't work, so I thought I would post here. So how do I write that JavaScript in CoffeeScript?

share|improve this question
Duplicate of stackoverflow.com/q/6463052/66226 – Trevor Burnham Aug 16 '11 at 17:46
My apologies Tever. I didn't know that those were anonymous functions and thus I couldn't find anything with searches. – Dave Long Aug 16 '11 at 20:32

1 Answer

up vote 19 down vote accepted

I think you're almost there but you need some parentheses (to group things) and some backslashes to keep CoffeeScript from misinterpreting the newlines. Try this:

thumb_overlay =>
    $('.post-thumb a').hover \
        (=> $(this).find('.overlay').fadeIn(150)), \
        (=> $(this).find('.overlay').fadeOut(150))

You could also mash it all into one line but you might regret it in a few months:

thumb_overlay =>
    $('.post-thumb a').hover (=> $(this).find('.overlay').fadeIn(150)), (=> $(this).find('.overlay').fadeOut(150))

And BTW, go to the GitHub page and hit "TRY COFFEESCRIPT", that's an easy way to sort small bits of CoffeeScript out; start with the -> version to cut down on the noise in the JavaScript and then switch to => when you get the right JavaScript.

I'm not sure if you want to => forms in this case, the -> form form:

$('.post-thumb a').hover \
    (-> $(this).find('.overlay').fadeIn(150)), \
    (-> $(this).find('.overlay').fadeOut(150))

would give you the the JavaScript that you started with:

$('.post-thumb a').hover((function() {
  return $(this).find('.overlay').fadeIn(150);
}), (function() {
  return $(this).find('.overlay').fadeOut(150);
}));

And if you don't like backslashes, you could do this:

$('.post-thumb a').hover( 
    -> $(this).find('.overlay').fadeIn(150)
    -> $(this).find('.overlay').fadeOut(150)
)
share|improve this answer
1  
The second backslash is unnecessary. The first is only necessary because you're omitting parentheses and the CoffeeScript parser will assume that the line is a complete function call unless you explicitly include a backslash to indicate the line continues. If you parenthesized, you wouldn't need any backslashes. – Chuck Aug 16 '11 at 4:32
@Chuck: We can call that personal preference. I actually like parentheses so I'd use them (and ignore the dirty looks) but a lot of people seem not to like them. I'd probably go with my (updated) last version in Real Life but I don't do that much CoffeeScript so I'm still fumbling around a bit. – mu is too short Aug 16 '11 at 4:41
I had been trying to do the Try CoffeeScript to make sure it worked, but nothing would compile beyond the hover method (none of the arguments), so I new I had something wrong. Is there a way to load the interactive console with jQuery to test there? – Dave Long Aug 16 '11 at 15:04
@Dave: Not that I know of. You might be able to make something go with jsfiddle and jsfiddle.net/kaleb/neEp4 though. – mu is too short Aug 16 '11 at 18:01
I actually found a Coda plugin that lets me compile and test coffeescript with jQuery – Dave Long Aug 16 '11 at 20:31
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.