Skip to content

Instantly share code, notes, and snippets.

@emmgfx
Created January 15, 2013 11:59
Show Gist options
  • Save emmgfx/4538141 to your computer and use it in GitHub Desktop.
Save emmgfx/4538141 to your computer and use it in GitHub Desktop.
Localstorage (cookies) Javascript
/* Se puede guardar texto o cualquier otra cosa, incluso video (MÁX 5M) */
/* Guarda dato */
localStorage["clave"] = "Valor";
/* Lee dato */
alert(localStorage["Nombre"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment