Skip to content

Instantly share code, notes, and snippets.

@t9toqwerty
Last active November 2, 2016 15:15
Show Gist options
  • Save t9toqwerty/6f6c5800fc08eb1ea75af1efda16c99c to your computer and use it in GitHub Desktop.
Save t9toqwerty/6f6c5800fc08eb1ea75af1efda16c99c to your computer and use it in GitHub Desktop.
Basic Jquery AJAX
$.ajax({
type: "POST",
url: 'url.php',
data: {
"key1": value1,
"key2": value2
},
success: function (data) {
return data;
},
error: function (jqXHR, exception) {
console.log(jqXHR);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment