Skip to content

Instantly share code, notes, and snippets.

@TheDutchDev
Created February 22, 2016 12:51
Show Gist options
  • Save TheDutchDev/dfea7acab4ab03719432 to your computer and use it in GitHub Desktop.
Save TheDutchDev/dfea7acab4ab03719432 to your computer and use it in GitHub Desktop.
JSON AJAX POST
$.ajax({
type: "POST",
url: hostURL + "index.php",
data: { action: "something" }
}).done(function (data) {
console.log( data );
}).fail(function (data) {
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment