You can use the get methond on your form, and then in your second page read the data from the get request using javascript, or you can send the data also using javascript.
Simple html form for sending the data:
<form action="yourpage.html" method="get" ">
<input type="text" id="name" name="name">
<input type="submit" value="Submit">
</form>
html form + Javascript for sending the data:
<form id="form" name="form" onsubmit="sendForm()">
<input type="text" id="name" name="name">
<input type="submit" value="Submit">
</form>
function sendForm()
{
var name = document.forms["form"]["name"].value;
window.location = "yourpage.html?name="+name;
}
Then on yourpage.html read the query string values. For query string values reading use this: How can I get query string values in JavaScript?