Is it possible to prevent the browser from following redirects when sending XMLHttpRequest-s (i.e. to get the redirect status code back and handle it myself)?
|
feedback
|
|
Not according to the W3C standard for the XMLHttpRequest object (emphasis added):
They are considering it for the future though:
| |||||
feedback
|
|
No you there isn't any place in the API exposed by XMLHttpRequest that allows you to override its default behaviour of following a 301 or 302 automatically. If the client is running IE on windows then you can use WinHTTP instead to set an option to prevent that behaviour but thats a very limiting solution. | |||
|
feedback
|