Embedding JavaScript
Problem
You want to include some found/pre-written JavaScript code inline with your CoffeeScript.
Solution
Wrap the JavaScript with backticks:
Discussion
This is a simple way to integrate small snippets of JavaScript code into your CoffeeScript without converting it over to use CoffeeScript syntax. As shown in the CoffeeScript Language Reference you can mix the two languages to a certain extent:
Here the hello
variable is still in CoffeeScript, but is assigned a function written in JavaScript.