Answers for "follow redirects js"

15

javascript redirect

<script>
  window.location.href = "http://mywebsite.com/home.html";
</script>
Posted by: Guest on April-13-2020
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 "Javascript"

Browse Popular Code Answers by Language