Horje
How to create HTML Web Storage Objects

HTML web storage provides two objects for storing data on the client:

  • window.localStorage - stores data with no expiration date
  • window.sessionStorage - stores data for one session (data is lost when the browser tab is closed)

Example of HTML Web Storage Objects

Before using web storage, check browser support for localStorage and sessionStorage:

index.html
Example: HTML
<script>
if (typeof(Storage) !== "undefined") {
  // Code for localStorage/sessionStorage.
} else {
  // Sorry! No Web Storage support..
}
</script>

Output should be:

Example of HTML Web Storage Objects





Category:
Web Tutorial
Sub Category:
HTML Web Storage API
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference