authorTextBox = document.getElementById("author"); titleTextBox = document.getElementById("title"); inputButton = document.getElementById("input"); sendLocalstorageButton = document.getElementById("send"); getLocalstorageButton = document.getElementById("get"); grid = document.getElementsByClassName("textboxGrid")[0] inputButton.addEventListener("click", addTextBoxLocal, false); sendLocalstorageButton.addEventListener("click", sendLocalstorage, false); getLocalstorageButton.addEventListener("click", getLocalstorage, false); function addTextBoxLocal() { addTextBox(authorTextBox.value, titleTextBox.value); authorTextBox.value = ""; titleTextBox.value = ""; } function addTextBox(author, title) { box = '
' + title + '
'; box += '