The read-only localStorage
property allows you to access a Storage
object for the Document
's origin; the stored data is saved across browser sessions. localStorage
is similar to sessionStorage
, except that while data stored in localStorage
has no expiration time, data stored in sessionStorage
gets cleared when the page session ends — that is, when the page is closed.
It should be noted that data stored in either localStorage
or sessionStorage
is specific to the protocol of the page.
myStorage = window.localStorage;
A Storage
object which can be used to access the current origin's local storage space.
SecurityError
file:
or data:
scheme, for example). For example, the user may have their browser configured to deny permission to persist data for the specified origin.The following snippet accesses the current domain's local Storage
object and adds a data item to it using Storage.setItem()
.
localStorage.setItem('myCat', 'Tom');
The syntax for reading the localStorage item is as follows:
var cat = localStorage.getItem('myCat');
The syntax for removing the localStorage item is as follows:
localStorage.removeItem('myCat');
The syntax for removing all the localStorage items is as follows:
// clear all items localStorage.clear();
Note: Please refer to the Using the Web Storage API article for a full example.
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of 'localStorage' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 4 | Yes | 3.5 | 8 | 10.5 | 4 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | Yes | Yes | Yes | 11 | 3.2 | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/window/localStorage