Ok, I\'ve tried to follow examples here, I know there might be a few different ways of adding objects to an array in localstorage and not overwriting it but I\'m failing to
Maybe you just need to fetch the entries before pushing the new one:
var allEntries = JSON.parse(localStorage.getItem("allEntries")) || []; allEntries.push(entry); //etc...