Answers for "how to change the url by js"

3

js change url

window.location.href = "www.google.com";
Posted by: Guest on May-07-2020
3

window replace url

location.replace("url");
Posted by: Guest on May-27-2020
5

javascript change url without reload

window.history.pushState('', 'New Page Title', '/new-url.php');
Posted by: Guest on July-22-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language