Eksperimenter med localStorage

by agib

JavaScript

var storage = window.localStorage;
if (!storage.pageLoadCount) storage.pageLoadCount = 0;
  storage.pageLoadCount = parseInt(storage.pageLoadCount, 10) + 1;
document.getElementById('count').innerHTML = storage.pageLoadCount;

//storage.setItem(document.location.href, "Red!");  
alert(storage[document.location.href]);