Reputation: 71
For example... I have several
<input type="text"/>
for users to input data on the current page ( let's say height, weight and body fat)
How can I pass these data to another page I made so I can use these data in that page to do calculations or analysis using JavaScript..? without saving these data in a server.
Upvotes: 0
Views: 60
Reputation: 8361
you can use Browser storage to do this task
Browser storage is easy to create, access, manipulate and delete using javascript.
Read more here
Upvotes: 1