JSFiddle - React, Tailwind, and code Playground

HTML

<div id="testDiv" style="width:150px; height:150px; background-color:green">
test
</div>

JavaScript

testDiv.addEventListener("auxclick", function() { alert("auxclick"); });
testDiv.addEventListener("click", function() { alert("click"); });