<section id="left">
<form>
<p><input id="box1" placeholder="Enter the key here"></p>
<p><input id="box2" placeholder="Enter the val here"></p>
<p><input id="submit" type="button" value="Submit"></p>
</form>
</section>
<section id="right">
You'll see some keys and values here if you add them!
</section>
function init(){
var button = document.getElementById("submit");
button.addEventListener("click", save);
disp();
}
function save () {
var key = document.getElementById ("box1").value;
var value = document.getElementById ("box2").value;
localStorage.setItem (key, value);
disp();
// We'll also clear the boxes
document.getElementById ("box1").value = "";
document.getElementById ("box2").value = "";
}
function disp(){
var box = document.getElementById("right");
box.innerHTML = "";
for(var i=0; i < localStorage.length; i++){
var key = localStorage.key(i);
var val = localStorage.getItem(key);
var link = '<a href="javascript:deleteVar(\''+key+'\')">Delete</a>';
box.innerHTML += key+": "+val+" "+link+"<br />";
}
}
window.deleteVar = function(key){
localStorage.removeItem(key);
// Call the disp function to update the box
disp();
}
init();
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.