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 => $('.
