JSFiddle - React, Tailwind, and code Playground

by stevenally

HTML

<span id="a">My Event Element</span>

JavaScript

a.onclick = a_onclick;
var counter = 0;
function a_onclick()
{
  counter++;
  alert("Hi! This handler has been invoked " + counter + " times!");
}