JSFiddle - React, Tailwind, and code Playground
HTML
Try focusing the "listbox" and then clicking the "button"
<br><br>
<div tabindex="0" onclick="log('click')">button</div>
<div tabindex="0" onblur="log('blur')">listbox</div>
<br><br>
<div>
Events:
</div>
<ol id="log">
</ol>
<script>
function log(text) {
let entry = document.createElement("li");
entry.innerText = text;
document.getElementById("log").appendChild(entry);
}
</script>