goto anther link in javascript code example
Example 1: javascript redirect to url
// 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: javascript go to url
window.location = url;
Example 3: js go to page
window.location.href = "http://example.com/new_url";