Skip to content

Instantly share code, notes, and snippets.

$.getJSON('/api/post.json')
.then (response) ->
# do something
response # if you would not return anything, promise would be fulfilled with undefined
.then (response) ->
# do something
undefined # necessary to prevent non-empty function body
.then null, (err) ->
# handle error
req = $.get('foo.html')
.success (response) ->
do_something()
.error (response) ->
do_something()