Skip to content

Instantly share code, notes, and snippets.

@hperantunes
Created June 30, 2020 16:02
Show Gist options
  • Save hperantunes/938f9ee5a28da9a744355c194e624b2f to your computer and use it in GitHub Desktop.
Save hperantunes/938f9ee5a28da9a744355c194e624b2f to your computer and use it in GitHub Desktop.
var request = new XMLHttpRequest();
request.open('GET', '/bar/foo.txt', false); // `false` makes the request synchronous
request.send(null);
if (request.status === 200) {
console.log(request.responseText);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment