Web storage enables web applications to store data locally in the user’s browser.
Before HTML5, application data was typically stored in cookies, which were sent with every server request. Web storage offers improved security and performance, allowing larger amounts of data (at least 5MB) to be stored locally without impacting website performance.
Unlike cookies, data stored in web storage is not transferred to the server, and each origin (domain and protocol) can store and access the same data across all pages.
The numbers in the table indicate the earliest browser version that fully supports Web Storage.
HTML web storage offers two objects for client-side data storage:
Prior to utilizing web storage, verify browser support for localStorage and sessionStorage.
if (typeof(Storage) !== “undefined”) { // Code for localStorage/sessionStorage. } else { // Sorry! No Web Storage support.. |