+ 3
Web storage in html5
can any one tell me how can i add the feature of storing data in my website.
1 Resposta
+ 5
An example of storing and calling data on client site as follows:
localStorage.setItem("name",item);
localStorage.getItem("name");
can any one tell me how can i add the feature of storing data in my website.