Skip to content

Instantly share code, notes, and snippets.

@markhowellsmead
Created May 14, 2014 11:41
Show Gist options
  • Save markhowellsmead/5fe2c0752f3044319649 to your computer and use it in GitHub Desktop.
Save markhowellsmead/5fe2c0752f3044319649 to your computer and use it in GitHub Desktop.
Javascript check to see if localStorage (HTML5 in-browser machanism) is supported
var hasStorage = (typeof(Storage)!=="undefined" && typeof(localStorage)!=="undefined");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment