So I have a css grid layout and I am trying to change the Background color for each individual div when you click on it. I have tried searching the forumns and reading the docs, but i keep hitting a wall. Any help would be appreciated.
This is my code so far
var box = document.getElementsByClassName("box");
var testTarget = document.getElementsByClassName("box")[12];
console.log(testTarget);
box.addEventListener("click", () => {
console.log('hello');
});
and a link to the codepen
https://codepen.io/edubz/pen/BqvxOY?editors=1111
Thank,
edubz