Thursday 21 January 2016

How to get the browser to navigate to URL in JavaScript




What is the best (correct, modern, cross-browser, safe) way to get a web browser to navigate to a URL of your choice using JavaScript?


Answer



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('...');

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...