HTML5 Web Storage

HTML5 let’s you storage data within the user’s browser, this is a new way to storage data locally.

Web Storage is more secure and faster than cookies. The data is not included with every server request, but used only when asked for. It is also possible to store large amounts of data, without affecting the website’s performance.
The data is stored in key/value pairs, and a web page can only access data stored by itself.


Random posts