Answers for "html switch pages"

2

how to switch between html pages

function change_page(){
   // similar behavior as an HTTP redirect
   window.location.replace("test.html");
   //or
   // similar behavior as clicking on a link
   window.location.href = "test.html";
};
Posted by: Guest on January-20-2021
1

switch page html

<script>window.location.href = "test.html";</script>
Posted by: Guest on July-15-2021

Browse Popular Code Answers by Language