Skip to content

Instantly share code, notes, and snippets.

@gipi
Created October 20, 2011 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gipi/1301059 to your computer and use it in GitHub Desktop.
Save gipi/1301059 to your computer and use it in GitHub Desktop.
Check HTML5 storage support
// via dive into html5
function supports_local_storage() {
try {
return 'localStorage' in window && window['localStorage'] !== null;
} catch(e){
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment