I am using Jquery Ajax for login form.After ajax success,I redirect the page using window.location.href="test.php"
This is working fine in Chrome,firefox and also in IE9.But in IE 11,it is not working.
I have tried,
window.location.replace("test.php");
window.location.assign("test.php");
setTimeout('window.navigate("test.php");', 1);
window.open('test.php','_self', null , false);
But all fails.Can anyone help?