Skip to content

Instantly share code, notes, and snippets.

@jbail
Created December 23, 2012 18:03
Show Gist options
  • Select an option

  • Save jbail/4364900 to your computer and use it in GitHub Desktop.

Select an option

Save jbail/4364900 to your computer and use it in GitHub Desktop.
Local storage example
window.localStorage.setItem('color', 'black');
//retrieve our stored item later
var color = window.localStorage.getItem('color'); //returns 'black'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment