Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm taking my first step of a thousand miles with the new local storage and session storage found in html5.

http://www.w3.org/TR/offline-webapps/

Q: Is there a code example of using either session storage or local storage, where the user enters a value, the value is saved locally, the user then connects to the Internet on his 56K modem and the local storage is synced with a server?

share|improve this question
2  
HTML5 offline stuff are all client side, not server side. You'll need to write some JS to sync with server side DB – Henry Feb 24 '10 at 17:34

3 Answers

up vote 5 down vote accepted
+100

you can find an example on this page on hacks.mozilla.org

share|improve this answer
Thanks futtta. This will get me to take another step. – Phillip Mar 2 '10 at 14:38

Instead of using the setInterval and blindly trying to send data to your server, check the navigator.onLine property:

if (navigator.onLine) {
   // Send data using XMLHttpRequest
} else {
   // Queue data locally to send later
}

You can also add listeners to the Window object for the "online" and "offline" events which will let you know when the browser has internet connectivity again.

share|improve this answer
Thanks Arne! I'm looking for a code example, so your answer is a good first step. – Phillip Feb 24 '10 at 18:32
+1 nice one. Is DOM0 but not standard.. How is browser support here? Doc here btw: developer.mozilla.org/En/DOM/Window.navigator.onLine – BalusC Feb 24 '10 at 23:41
1  
Tested navigator.onLine successfully with Firefox 3.6, Safari 4, IE8, and Chrome 5 (dev) and I hear it's in Opera too. – Arne Roomann-Kurrik Feb 25 '10 at 8:06

Feel like these two should be here as well...

share|improve this answer
Thanks doublejosh. I had never seen these before. – Phillip May 31 '12 at 21:10

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.