Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save pbalduino/a86e24f499a216c25056 to your computer and use it in GitHub Desktop.

Select an option

Save pbalduino/a86e24f499a216c25056 to your computer and use it in GitHub Desktop.
Small sample of HTML5 Local Storage
if(localStorage["demo.isRunning"] !== "true") {
alert("Let's write something on the local storage");
localStorage["demo.isRunning"] = true;
localStorage["demo.value"] = "It works!";
window.location.reload();
} else {
alert("Value of stored value is '" + localStorage["demo.value"] + "'");
localStorage.removeItem("demo.isRunning");
localStorage.removeItem("demo.value");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment