Skip to content

Instantly share code, notes, and snippets.

@pierot
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save pierot/9833466 to your computer and use it in GitHub Desktop.

Select an option

Save pierot/9833466 to your computer and use it in GitHub Desktop.
$.ajax
url: 'http://'
method: 'POST'
dataType: 'json'
data:
item1: 'test'
item2: 5
success: (d) =>
console.log d
# OF
$.ajax
url: "http://"
method: 'POST'
dataType: 'json'
data:
item1: 'test'
item2: 5
.done (data) =>
console.log data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment