Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Hurly77/beb08c6f39985f0bbd4900275a199087 to your computer and use it in GitHub Desktop.
Save Hurly77/beb08c6f39985f0bbd4900275a199087 to your computer and use it in GitHub Desktop.
function update() {
for (let i = 0; i < boxes.length; i++) {
boxStorage.appendChild(boxes[i]);
}
}
// also update needs to be called when ever we create a new box
button.addEventListener('click', () => {
addBox(boxName.value, boxColor.value, boxHeight.value, boxWidth.value);
update(); // add this to event listener
boxName.value = '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment