Skip to content

Instantly share code, notes, and snippets.

@antondevv
Created February 12, 2022 16:17
Show Gist options
  • Save antondevv/f2405b317d11c8444fe6f140729adba7 to your computer and use it in GitHub Desktop.
Save antondevv/f2405b317d11c8444fe6f140729adba7 to your computer and use it in GitHub Desktop.
old request
function reqListener () {
alert(this.responseText)
}
var oReq = new XMLHttpRequest();
oReq.addEventListener("load", reqListener);
oReq.open("GET", "https://jsonplaceholder.typicode.com/todos/1");
oReq.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment