CoffeeScript

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<body>

   <p>Click or move the mouse pointer over this paragraph.</p>

</body>

CoffeeScript

$('p').on
  mouseenter: ->
    $(this).css 'background-color', 'lightgray'
    return
  mouseleave: ->
    $(this).css 'background-color', 'lightblue'
    return
  click: ->
    $(this).css 'background-color', 'yellow'
    return
return