PDA

View Full Version : What is the use of local storage in HTML5?



spobitsseo
07-04-2017, 02:32 AM
What is the use of local storage in HTML5?

Sankara Vignesh
07-06-2017, 06:24 AM
With local storage, web applications can store data locally within the user's browser. Before HTML5, application data had to be stored in cookies, included in every server request. Local storage is more secure, and large amounts of data can be stored locally, without affecting website performance.

erieki
07-06-2017, 07:17 AM
HTML5, application data had to be stored in cookies, included in every server request. Local storage is more secure, and large amounts of data can be stored locally, without affecting website performance.

mspcarservice
08-01-2017, 03:46 AM
In this tutorial you will learn how to use HTML5 local and session storage feature to store data on the user's computer in a fast and secure manner.

mikerock
08-02-2017, 02:43 PM
HTML5 local storage makes it possible to store values in the browser which can survive the browser session. In that way HTML5 local storage is similar to cookies, but has some differences which I will discuss a bit later in this tutorial. HTML5 Local storage also makes it possible to send events between browser windows. A very useful feature. This HTML5 local storage tutorial will explain how to use HTML5 local storage to achieve this.