Skip to content

Instantly share code, notes, and snippets.

@leroyrosales
Created September 18, 2019 00:25
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 leroyrosales/c0db446d2cafc9f959db2efdd595bb88 to your computer and use it in GitHub Desktop.
Save leroyrosales/c0db446d2cafc9f959db2efdd595bb88 to your computer and use it in GitHub Desktop.
Vanilla AJAX
var xhr = new XMLHttpRequest();
xhr.open('GET', 'JSON_OR_API', true);
xhr.onload = function() {
if (this.status == 200) {
// DO SOMETHING
}
}
xhr.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment