Skip to content

Instantly share code, notes, and snippets.

@caubry
Created January 17, 2014 21:26
Show Gist options
  • Save caubry/8481887 to your computer and use it in GitHub Desktop.
Save caubry/8481887 to your computer and use it in GitHub Desktop.
function xhrGet(reqUri,callback) {
var xhr = new XMLHttpRequest();
xhr.open("GET", reqUri, true);
xhr.onload = callback;
xhr.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment