Skip to content

Instantly share code, notes, and snippets.

@tyfkda
Last active August 29, 2015 14:14
Show Gist options
  • Save tyfkda/5e2b024bd98da3752f54 to your computer and use it in GitHub Desktop.
Save tyfkda/5e2b024bd98da3752f54 to your computer and use it in GitHub Desktop.
HTML5 storage
(function() {
// sessionStorage: Live until session end.
// localStorage: Live forever.
// Size limit: 5MB / domain.
var storage = sessionStorage; // or localStorage;
// Save: 値は文字列化される(toString())ので、数値などはいいが、オブジェクトはJSONなどでエンコードしておく必要がある
storage.setItem('KEY', value);
// Load.
storage.getItem('KEY'); // ない場合にはnull
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment