I have two jQuery pages, Page1 and Page2, and I can get input to Page1.
somval=1000$
.
The user of page 1 enters some value. I saved the value:
var val = somval;
Now on the second page I need to get the somvalue result on page 1. Of course, two pages using My1.js My2.js respectively.
How to share values from one jQuery file with another javascript or how to get value from page1 value to page2?
How do I solve this problem?
source
share