Skip to content

Instantly share code, notes, and snippets.

@Andrews54757
Created January 19, 2017 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Andrews54757/4946b27f6283eb8a925c1ac370bf9fbc to your computer and use it in GitHub Desktop.
Save Andrews54757/4946b27f6283eb8a925c1ac370bf9fbc to your computer and use it in GitHub Desktop.
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
}
};
xhttp.open("GET", "", true);
xhttp.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment