Reputation: 5308
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 common across all browsers, like Flex is doing?
And where these data are stored in Windows 7?
Upvotes: 14
Views: 4292
Reputation: 7866
This 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.
Upvotes: 16