next page 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: js go to page
window.location.href = "http://example.com/new_url";