Welcome
Web Storage in HTML5 HTML5 offers a new way to store data instead of having to send and retrieve data from a database or by using cookies.
| Browsers | IE 8+ | Firefox 4+ | Chrome 12+ | Safari 5+ | Yes | Yes | Yes | Yes |
Local Storage
Local storage give you the ability to store values in the browser so that the next time a user visits the page.
Setting a value is easy. Just add this line of code in your JavaScript function and a value will be set.
Read more