Skip to content

Instantly share code, notes, and snippets.

@sTiLL-iLL
Created August 19, 2014 01:59
Show Gist options
  • Save sTiLL-iLL/a9b6735da7ff42a03aa9 to your computer and use it in GitHub Desktop.
Save sTiLL-iLL/a9b6735da7ff42a03aa9 to your computer and use it in GitHub Desktop.
ajax request
var r = new XMLHttpRequest();
r.open("POST", "webservice", true);
r.onreadystatechange = function () {
if (r.readyState != 4 || r.status != 200) return;
console.log(r.responseText);
};
r.send("a=1&b=2&c=3");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment