JSFiddle - React, Tailwind, and code Playground

HTML

<div id="wrapper">
<button id="example">Button</button>
</div>

JavaScript

var button = document.getElementById("example");
    
    document.addEventListener("focus", function (e) {
        alert(e.eventPhase);
    }, true);
    
    button.focus();