Skip to content

Instantly share code, notes, and snippets.

@stepanger
Created June 10, 2017 03:04
Show Gist options
  • Save stepanger/289deca803951435f815d53334a3197f to your computer and use it in GitHub Desktop.
Save stepanger/289deca803951435f815d53334a3197f to your computer and use it in GitHub Desktop.
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://raw.githubusercontent.com/stepanger/Chocolate/storage/data/base.json", true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
console.log( xhr.responseText );
}
}
xhr.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment