Can jQuery ajax made browser request a new location in redirect header send by server?
|
|
jQuery does what it is expected to do: follow redirects automatically and go fetch the final page. You can go to http://jigsaw.w3.org/HTTP/300/ to test it. Open firebug there and inject jquery in the page by editing the HTMLhead and adding
to it. Then go to the console and run
and the alert shows the HTML of the redirected page (which is the same one you are in). |
||
|
|
|
|
You should parse the code and use Javascript to set the document.location
If you PHP script returns a valid url this will set the location to that url. EDIT
<iframe src="blank.html" name='hiddenframe' id='hiddenframe' onload='readyLoad()'>
And then use some Javascript like this
You should wrap these function into nice little event handlers using jQuerys build in functions for that (they are great). |
||||
|
|
|
Haven't tried jQuery, and a quick peek at the doc doesn't really tell me what a redirect response is handled as. But in Prototype JS any response code other than 2xx "Success" is a onFailure event, thus a redirect is a failure. You could probably parse the response (somehow) in the error block to see what code it is and get the address, wich you can set the document.location to... But it doesn't sound very safe, or practical. It's more common to print an error of some kind. Or, if the request requires a logged in user, to assume the session has timed out and redirect to the login page. |
||
|
|
