I am experiencing an issue where a URL is being redirected to another domain by the server. My test code is very simple:
$.ajax({
type:"GET",
url:"{MYURL}",
success:function(d){alert('response');}
})
You can check out the live script here.
Despite receiving the "response" alert on all browsers and platforms, I am facing an issue with iOS (iPhone/iPad) which displays the error message "Cannot make any requests from null". Any assistance would be greatly appreciated.
Ofer