I tried localStorage in HTML for my project. When I save some data using localStorage in one browser and try to read it in another browser, it fails.
How can I save data that is mon across all browsers, like Flex is doing?
And where these data are stored in Windows 7?
I tried localStorage in HTML for my project. When I save some data using localStorage in one browser and try to read it in another browser, it fails.
How can I save data that is mon across all browsers, like Flex is doing?
And where these data are stored in Windows 7?
-
See AmplifyJS (see also: browser patibility of
localStorage
). – Rob W Commented Jul 11, 2012 at 9:19 - 2 You can save data across multiple browsers by storing it server side - in a database for example – Manse Commented Jul 12, 2012 at 8:06
1 Answer
Reset to default 16This is not possible.
Every browser stores it in its own location (this is the reason it is not possible). The
localStorage
is not an OS service, it is part of HTML5 specification, which is implemented by each browser separately.