Skip to content

Instantly share code, notes, and snippets.

@z3bbster
Forked from robinsloan/ajax_req.js
Created June 1, 2013 18:45
Show Gist options
  • Select an option

  • Save z3bbster/5691337 to your computer and use it in GitHub Desktop.

Select an option

Save z3bbster/5691337 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