As part of a larger webapp, I want to build functionality that allows a user to enter data while offline -- and then send that data back to my site when they have a connection again
The parts that, to me, are missing ar
- Saving a certain set of data in their browser
- Saving a form that allows them to enter data
- using form from step#2 to update data from step#1
- getting data out of the local data store and sending it back to the server
I would like to keep this entirely within the browser, so...
Does HTML5 meet some (or all) of those goals as it's currently implemented in webkit/ff3?
If not,what technologies should I start looking into in order to accomplish all of the above.