Skip to content

Instantly share code, notes, and snippets.

@mrOrlando
Last active March 1, 2017 08:14
Show Gist options
  • Save mrOrlando/40151055e611032b0c97c70318ad3e40 to your computer and use it in GitHub Desktop.
Save mrOrlando/40151055e611032b0c97c70318ad3e40 to your computer and use it in GitHub Desktop.
ajax
$.ajax({
method: 'POST',
url: url('ClassName', 'json_method'),
data: {
"id": id,
"name": name
},
dataType: 'json',
success: function(data) {
console.log('data: ', data);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment