Intercepting XMLHttpRequest requests

adamkdean

Adam K Dean

Posted on March 11, 2015

Intercepting XMLHttpRequest requests

Let's kick off the continuation of my code blogging with a very helpful little snippet. I'm just removing this from a codebase so it can sit here for eternity instead.

(function(open) {
    XMLHttpRequest.prototype.open = function(method, url, async, user, pass) {
        // do some magic
        open.call(this, method, url, async, user, pass);
    };
})(XMLHttpRequest.prototype.open);
Enter fullscreen mode Exit fullscreen mode

This will intercept the request before it happens, and once you've done whatever changes you need to do, be it logging or tagging, you can continue it.

💖 💪 🙅 🚩
adamkdean
Adam K Dean

Posted on March 11, 2015

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related