HTML Web Storage API; better than cookies.
What is HTML Web Storage?With web storage, applications can store data locally within the user's browser.
Before HTML5, application data had to be stored in cookies, included in every server request. Web storage is more secure, and large amounts of data can be stored locally, without affecting website performance.
Unlike cookies, the storage limit is far larger (at least 5MB) and information is never transferred to the server.
Web storage is per origin (per domain and protocol). All pages, from one origin, can store and access the same data.
Web Storage API ObjectsWeb storage provides two objects for storing data in the browser:
window.localStorage
- stores data with no expiration date (data is not lost when the browser tab is closed)window.sessionStorage
- stores data for one session (data is lost when the browser tab is closed)The numbers in the table specify the first browser version that fully supports Web Storage.
API localStorage 4.0 8.0 3.5 4.0 11.5 sessionStorage 4.0 8.0 3.5 4.0 11.5 Test Web Storage API SupportBefore using web storage, we can quickly check browser support for localStorage and sessionStorage:
ExampleTest browser support:
<script>
const x = document.getElementById("result");
if (typeof(Storage) !== "undefined") {
x.innerHTML = "Your browser supports Web storage!";
} else {
x.innerHTML = "Sorry, no Web storage support!";
}
</script>
The localStorage
object stores the data with no expiration date. The data will not be lost when the browser is closed, and will be available the next day, week, or year.
Use localStorage
to set and retrieve name and value pairs:
<script>
const x = document.getElementById("result");
if (typeof(Storage) !== "undefined") {
// Store
localStorage.setItem("lastname", "Smith");
localStorage.setItem("bgcolor", "yellow");
// Retrieve
x.innerHTML = localStorage.getItem("lastname");
x.style.backgroundColor = localStorage.getItem("bgcolor");
} else {
x.innerHTML = "Sorry, no Web storage support!";
}
</script>
Try it Yourself »Example explained:
localStorage.setItem()
method to create name/value pairslocalStorage.getItem()
method to retrieve the values setThe syntax for removing the "lastname" localStorage item is as follows:
localStorage.removeItem("lastname");
Note: Name/value pairs are always stored as strings. Remember to convert them to another format when needed!
Counting Clicks with localStorageThe following example counts the number of times a user has clicked a button. In this code the value string is converted to a number to be able to increase the counter:
Example<script>
function clickCounter() {
const x = document.getElementById("result");
if (typeof(Storage) !== "undefined") {
if (localStorage.clickcount) {
localStorage.clickcount = Number(localStorage.clickcount)+1;
} else {
localStorage.clickcount = 1;
}
x.innerHTML = "You have clicked the button " + localStorage.clickcount + " time(s)!";
} else {
x.innerHTML = "Sorry, no Web storage support!";
}
}
</script>
The sessionStorage
object is equal to the localStorage
object, except that it stores the data for only one session! The data is deleted when the user closes the specific browser tab.
The following example counts the number of times a user has clicked a button, in the current session:
Example<script>
function clickCounter() {
const x = document.getElementById("result");
if (typeof(Storage) !== "undefined") {
if (sessionStorage.clickcount) {
sessionStorage.clickcount = Number(sessionStorage.clickcount)+1;
} else {
sessionStorage.clickcount = 1;
}
x.innerHTML = "You have clicked the button " + sessionStorage.clickcount + " time(s) in this session!";
} else {
x.innerHTML = "Sorry, no Web storage support!";
}
}
</script>
Track your progress - it's free!
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4