Horje

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




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