Answers for "how to send to one page to another page in js"

63

one page to another page in javascript

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

how to pass the data from one page to another in javascript

var favoritemovie = "Shrek";
sessionStorage.setItem("favoriteMovie", favoritemovie);
Posted by: Guest on September-08-2020

Code answers related to "how to send to one page to another page in js"

Browse Popular Code Answers by Language