Skip to content

Instantly share code, notes, and snippets.

@unrealapex
Last active October 3, 2021 21:41
Show Gist options
  • Select an option

  • Save unrealapex/8e5d0f752f3e0506624803603a5b5957 to your computer and use it in GitHub Desktop.

Select an option

Save unrealapex/8e5d0f752f3e0506624803603a5b5957 to your computer and use it in GitHub Desktop.
// code taken from https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest
function reqListener () {
console.log(this.responseText);
}
var oReq = new XMLHttpRequest();
oReq.addEventListener("load", reqListener);
oReq.open("GET", "http://www.example.org/example.txt");
oReq.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment