how to switch between html pages

49

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";
}; 

Comments

Submit
0 Comments