0

Using Javascript / Jquery (1.7) / Ajax , is it possible to retain around 1kb of data across 2 different pages on the same domain?

For example, a user will enter information into a textbox, and navigate away from this page onto a specific different page.

Is it then possible to alert the user with the textbox information from the previous page?

Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
  • 1
    You could store the information in a cookie, when the textbox value is changed (`onchange` event). Then on page load, you could check this cookie. – Abhishek Goyal Dec 24 '14 at 16:07

1 Answers1

5

You can store that amount of information:

Community
  • 1
  • 1
Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335