Reputation: 269
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
Upvotes: 0
Views: 313
Reputation: 3034
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 .
Upvotes: 1