jashkenas--coffeescript/documentation/examples/chaining.coffee

7 lines
97 B
CoffeeScript

$ 'body'
.click (e) ->
$ '.box'
.fadeIn 'fast'
.addClass 'show'
.css 'background', 'white'