http4['onreadystatechange'] = function () { if (http4['readyState'] == 2) { // headers received if (http4['status'] == 302) { // a http redirection alert(http4.getResponseHeader("Location")); ... } } };
Jump To Top of Thread