
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to store data in the browser with the HTML5 localStorage API?
HTML5 localStorage saves string data in the browser and lasts beyond the current session. localStorage stores the data, with no expiration, whereas sessionStorage is limited to the session only. When the browser is closed, the session is lost.
The Local Storage is designed for storage that spans multiple windows and lasts beyond the current session. In particular, Web applications may wish to store megabytes of user data, such as entire user-authored documents or a user's mailbox, on the client side for performance reasons.
You can try to run the following code to learn how to work with HTML5 localStorage
Example
<!DOCTYPE HTML> <html> <body> <script type = "text/javascript"> if( localStorage.hits ){ localStorage.hits = Number(localStorage.hits) +1; }else{ localStorage.hits = 1; } document.write("Total Hits on the website:" + localStorage.hits ); </script> <p>Refresh the page to increase number of hits.</p> <p>Close the window and open it again and check the result.</p> </body> </html>
- Related Articles
- How to store objects in HTML5 localStorage?
- How to use HTML5 localStorage and sessionStorage?
- How to delete a localStorage item when the browser window/tab is closed?
- How to use HTML5 GeoLocation API with Google Maps?
- How to allow the restricted resources from another domain in web browser with HTML5
- Store and retrieve arrays into and from HTML5 data attributes with jQuery?
- How to check web browser support in HTML5
- Uniquely identify files before uploading with the HTML5 file API
- IE supports the HTML5 File API
- Microdata API in HTML5
- How to use HTML5 Geolocation Latitude/Longitude API?
- Which browsers support the HTML5 History API?
- How to find the size of localStorage in HTML?
- HTML5 applicationCache vs Browser Cache
- How to store a name permanently using HTML5 Local Storage?

Advertisements