I am trying to redirect to a different page in IE9 (9.0.3).
When I try to get/set document.location, or document.location.href, or wi
document.location
document.location.href
wi
You should use an absolute URL:
var url = '/section/page/'; var host = window.location.hostname; window.location = 'http://' + host + url;
Where url is the relative path to your page.