mrpopo
mrpopo

Reputation: 1563

I need a way to store information offline using a web-app

I want to create a web-app using HTML5, CSS3 and possible JQuery mobile. This app will just be a form used to collect customer data but it needs to be able to work offline.

I've created offline web-apps before and used manifest files to make them offline but is there a way to make a form store data on the device for uploading to a computer or server later?

Upvotes: 1

Views: 137

Answers (1)

Wildhoney
Wildhoney

Reputation: 4969

There are plenty of solutions for offline storage in HTML5, but all depend on which browser you want to support? localStorage is perhaps the most widely supported at the moment, there was also web SQL databases and so forth: http://www.html5rocks.com/en/tutorials/offline/storage/

Upvotes: 2

Related Questions