how to change url javascript code example
Example 1: redirect javascript
// 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 change url
window.location.href = "www.google.com";
Example 3: javascript change url without reload
window.history.pushState('', 'New Page Title', '/new-url.php');
Example 4: javascript change url
history.pushState({}, null, newUrl);