Local Storage in the browser
Local storage lets you store things indefinitely in the user's browser, specific to your site. This can be used for all kinds of things, like caching dropdown values, storing user information, keeping client-side shopping carts, whatever else you can think of. It's a simple store, just string-value pairs, so if this doesn't suit your needs, check out the much more powerful and more complex IndexedDB.
Comments
Post a Comment