JSFiddle - React, Tailwind, and code Playground

by termi

HTML

<div id=test></div>

JavaScript

test = document.getElementById("test")
    
test.addEventListener("click", function(e){ alert(e.type) })
    
test.dispatchEvent(new Event("click"))