Answers for "window location redirect javascript"

45

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";
Posted by: Guest on May-14-2020
50

window location redirect javascript

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
0

js redirect

// similar as an HTTP redirect, page will be not in browser history
window.location.replace("/replaced.html");

// similar as clicking on a link, page will be on history :-)
window.location.href = "/replaced.html";
Posted by: Guest on July-30-2021

Code answers related to "window location redirect javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language