Skip to content

Instantly share code, notes, and snippets.

@bigsan
Created October 27, 2010 14:38
Show Gist options
  • Save bigsan/649143 to your computer and use it in GitHub Desktop.
Save bigsan/649143 to your computer and use it in GitHub Desktop.
JavaScript: Checking for offline data functionality
// Key/value storage
if ('localStorage' in window) { ... }
if ('sessionStorage' in window) { ... }
// SQL API
if ('openDatabase' in window) { ... }
// Offline application cache
if ('applicationCache' in window) { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment