0

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)?

Sergey Metlov
  • 25,747
  • 28
  • 93
  • 153

2 Answers2

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.

DanBeale
  • 310
  • 4
  • 15
James
  • 933
  • 1
  • 7
  • 14