Anybody knows ways to store data with javascript clients computer? Except using cookies.
May be there is such lib ?
By the way the data I want to be stored isn’t secret if that matters.
Anybody knows ways to store data with javascript clients computer? Except using cookies. May
Share
You could use HTML 5 Local Storage. It’s what the Stack Exchange network uses for global authentication. It’s supported only by modern browsers but you could always gracefully fallback to cookies if not supported (IE8+, Chrome, Safari, FireFox 3.6+, and Opera 10.61+ are all supported).