JSFiddle - React, Tailwind, and code Playground

by Anton Spirin

HTML

<a class="my-class">
  <div class="my-class-2"> click me </div>
</a>

CSS

.my-class-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  border: 1px solid;
  cursor: pointer;
}

JavaScript

document.addEventListener('click', event => {
    if (event.target.closest('.my-class')) {
        alert('It works good');
    }
});