Eric5020946
Posts: 0
Joined: Tue Sep 18, 2012 4:31 pm

localStorage when app closed and reopened

is localStorage variable available after user closed app on the phone and then opened app again? I would assume that localStorage works just fine when app runs in thebackground but not sure what happens when app has been closed and opened again, what happens to all localStorgae variables in this case?

Emmz
Posts: 0
Joined: Sat Jun 23, 2012 11:06 pm

localStorage when app closed and reopened

Best simple info I found on Local Storage..
a href="http:/eintohtml5.info/storage.html" rel="nofollow"http:/eintohtml5.info/storage.html/a
An Excerpt...
So what is HTML5 Storage? Simply put, it’s a way for web pages to store named key/value pairs locally, within the client web browser. this data persists even after you navigate away from the web site, close your browser tab, exit your browser, or what have you. Unlike cookies, this data is never transmitted to the remote web server (unless you go out of your way to send it manually). Unlike all previous attempts at providing persistent local storage, it is implemented natively in web browsers, so it is available even when third-party browser plugins are not.

Return to “Issues”