I want to be able to click on div "three" and it should bubble up to the other two?
const divs = document.querySelectorAll('div');
divs.forEach(div => div.addEventListener('click', function (e) {
console.log(e.target.className);
}));
<div class="one">
<div class="two">
<div class="three">
Hello World
</div>
</div>
</div>