Is there, with Javascript, a way to monitor URL changed via 302 redirects on the elements in page?

I have some script on a remote server I don't have control on, loaded via the script tag, which may, in certain circumstances, immediately return a 302 redirect to another location.

Is it a way to observe this redirect, and to be notified of the new location, to take different actions depending on the loaded URI?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

The common wisdom here seems to be no, but if you wanted to test it out try loading the script with jQuery's ajax:

var redirected = false;
$.ajax({
    url: url,
    dataType: "script",
    statusCode: {
        302: function() {
            redirected = true;
        }
    },
    success: function () {
        if (redirected) {
            // something
        } else {
            // something else
        }
    }
});

note that the script will already have run by the time you get to the success function, so this might be of no use at all even if it works.

link|improve this answer
feedback

I don't think so. The draft spec from the W3C says an XMLHttpRequest would transparently follow the redirect, and you're not even using something that gives you that much visibility on the process when you're just adding a script element to the page (heck, you're lucky to get load / onreadystate events from it).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.