How to get the browser to navigate to URL in JavaScript [duplicate] How to get the browser to navigate to URL in JavaScript [duplicate] javascript javascript

How to get the browser to navigate to URL in JavaScript [duplicate]


This works in all browsers:

window.location.href = '...';

If you wanted to change the page without it reflecting in the browser back history, you can do:

window.location.replace('...');


Try these:

  1. window.location.href = 'http://www.google.com';
  2. window.location.assign("http://www.w3schools.com");
  3. window.location = 'http://www.google.com';

For more see this link: other ways to reload the page with JavaScript