JSFiddle - React, Tailwind, and code Playground
by wizviper
HTML
<button id="test">
oof
</button>
JavaScript
i=0;
document.getElementById('test').addEventListener('click',function() {
i++;
alert(i);
})
by wizviper
<button id="test">
oof
</button>
i=0;
document.getElementById('test').addEventListener('click',function() {
i++;
alert(i);
})