DEV Community

Cover image for Intercepting XMLHttpRequest requests
Adam K Dean
Adam K Dean

Posted on

3 2

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.

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs