Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could someone recommend simple method or service for this?

Basically we have an iPad app but it should be able to store form data also when offline. So I'd need a local storage and sync it to server when it's back online.

We need to be able to handle few thousand form inputs and javascript/html is heavily preferred in this case.

Many thanks gurus

share|improve this question
2  
So ... What have you already tried? – Silox Aug 28 '12 at 10:03
Please, do some research. This is not a "we happily do your research instead of you" site. Come back when you have specific questions. – bažmegakapa Aug 29 '12 at 11:13

1 Answer

Save it using localStorage:

localStorage.setItem('whatever', value);

Whenever you're back online, just retrieve it using:

localStorage.getItem('whatever');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.