This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

Web Storage API

The sessionStorage Object

// set the sessionStorage.setItem
sessionStorage.setItem("name","John Doe");
// recall and display the value of the specified sessionStorage identified by '.getItem("name")'
document.getElementById("demo").innerHTML = sessionStorage.getItem("name");