Skip to content

Instantly share code, notes, and snippets.

@davidsonfellipe
Last active December 14, 2015 23:28
Show Gist options
  • Save davidsonfellipe/5165482 to your computer and use it in GitHub Desktop.
Save davidsonfellipe/5165482 to your computer and use it in GitHub Desktop.
function load(url, callback) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = onReady;
function onReady() {
if(xhr.readyState < 4 || xhr.status !== 200) {
return;
}
if(xhr.readyState === 4) {
callback(xhr);
}
}
xhr.open('GET', url, true);
xhr.send('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment