Reputation: 51383
So my goal is to use offline storage to do this.
The main goal is remembering login information.
In what form should I store the data and how should I actually go about doing this?
Examples would be great, thanks!
Upvotes: 1
Views: 1063
Reputation: 487
Use persistent storage. See this example from Apple docs.
UPD: Apple recommends using persistent storage facilities of HTML5 now. However, the above mentioned article is quite informative.
Upvotes: 2
Reputation: 426
think about the manifest system and store a dynamic javascript file with login variable inside... just an idea
Upvotes: 0