0

Is it possible to store the information in both Web Storage and Web SQL forever because it deletes the information after the user clears the browsing data. if its not possible what should i do to fix it

Karish Karish
  • 269
  • 3
  • 18
  • 1
    Store the information in a server. Obviously if the user wants to delete their own data there's nothing you can do about it. – JJJ Dec 16 '13 at 08:35

1 Answers1

1

You cannot store information in websql and web storage forever. It is not suggested to store any critical data in these storage and rather any data stored in these storage should be synchronized with server db .

Rajesh
  • 2,934
  • 8
  • 42
  • 71