Skip to content

Instantly share code, notes, and snippets.

@leonguyen
Created June 9, 2014 03:09
Show Gist options
  • Select an option

  • Save leonguyen/12f8a497c910dd283e4c to your computer and use it in GitHub Desktop.

Select an option

Save leonguyen/12f8a497c910dd283e4c to your computer and use it in GitHub Desktop.
jquery ajax
$.ajax({
url: '/control/param',
dataType: 'json',
data: {
'id': id
},
type: 'POST',
success: function(res) {
if (res.success) {
success_msg(res.msg)
} else if (res.fail) {
error_msg(res.msg);
}
return 0;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment