How to get a redirect URL with Javascript/JQuery?
How to get a redirect URL with Javascript/JQuery?
Right now, I am using JQuery for:
$.get(url, function()
...
);
url
is an external website that then redirects. Is there any way to get the final redirect URL using Javascript or JQuery?
url
Additionally, I have tried examining the response headers but there is no 'Location' header returned.
@charlietfl The request does succeed and returns the data it needs to. I just can't find a way to get that final redirect url :P
– A. Rahm
Sep 3 at 3:48
Possible duplicate of How to get the final URL after an Ajax redirect?
– kgbph
Sep 3 at 3:49
How do you know it gets redirected in the first place?
– charlietfl
Sep 3 at 3:49
@charlietfl If I use the browser to navigate to that URL, it is redirected to another page.
– A. Rahm
Sep 3 at 3:54
Thanks for contributing an answer to Stack Overflow!
But avoid …
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
But avoid …
To learn more, see our tips on writing great answers.
Required, but never shown
Required, but never shown
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Does the request succeed? Suspect you run into CORS problems as a result of that redirect
– charlietfl
Sep 3 at 3:47