Ok so I will say I'm just a beginner so this may be a basic question.
But say I have some inputs on one page:
<input type="text" id="x" /> <br>
<input type="text" id="y" /> <br>
<input type="text" id="z" /> <br>
And I have a script on the other:
function aaa(){
var SimpleSum = x*y+z;
alert(SimpleSum);
}
Now is there anyway to save the variables from the form on one page so that I can use them on the other page.