Is there any solutions or practices of how to organize small local data storage to keep some data between requests (no cookies or another sending data to server)?
Asked
Active
Viewed 55 times
2 Answers
2
window.name can hold several MEGABYTES worth of string data. It must be used carefully though.
See: Using window.name as a local data cache in web browsers

Community
- 1
- 1

Diodeus - James MacFarlane
- 112,730
- 33
- 157
- 176
1
Local Storage ability is included in HTMl5. Check out this link for more information (http://diveintohtml5.ep.io/storage.html). This will not work in older browsers.