Skip to content

Instantly share code, notes, and snippets.

@robinsloan
Created June 1, 2013 18:15
Show Gist options
  • Save robinsloan/5691230 to your computer and use it in GitHub Desktop.
Save robinsloan/5691230 to your computer and use it in GitHub Desktop.
// this is the part i always use
$.ajax = function(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open("GET", url, true);
xhr.onload = callback;
xhr.send();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment