Skip to content

Instantly share code, notes, and snippets.

@darkhelmet
Created February 20, 2010 22:54
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darkhelmet/309973 to your computer and use it in GitHub Desktop.
Save darkhelmet/309973 to your computer and use it in GitHub Desktop.
(function(open) {
XMLHttpRequest.prototype.open = function(method, url, async, user, pass) {
// Do some magic
open.call(this, method, rewrittenUrl, async, user, pass);
};
})(XMLHttpRequest.prototype.open);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment