JSFiddle - React, Tailwind, and code Playground
by skirtle
HTML
<div>
<button data-hoverable>
Button 1
</button>
<button>
Button 2
</button>
<button data-hoverable>
Button 3
</button>
</div>
JavaScript
document.addEventListener('mouseover', ev => {
const el = ev.target
if (el.hasAttribute('data-hoverable')) {
console.log(el.innerText)
}
})