jquery window redirect with header code example
Example 1: jquery redirect
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com";
Example 2: jquery window redirect with header
$(location).attr('href', 'www.google.co.in');