Simply in JavaScript, you can redirect to a specific page by using the following:
window.location.replace("http://www.test.com");
Or
location.replace("http://www.test.com");
Or
window.location.href = "http://www.test.com";
Using jQuery:
$(window).attr("location","http://www.test.com");