Skip to content

Instantly share code, notes, and snippets.

@ph-One
Last active August 29, 2015 14:12
Show Gist options
  • Save ph-One/3362d7a15167349a4b69 to your computer and use it in GitHub Desktop.
Save ph-One/3362d7a15167349a4b69 to your computer and use it in GitHub Desktop.
XHR
// Mozilla
function reqListener () {
console.log(this.responseText);
}
var oReq = new XMLHttpRequest();
oReq.onload = reqListener;
oReq.open('get', 'yourFile.txt', true);
oReq.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment