JSFiddle - React, Tailwind, and code Playground

by David Buzatto

HTML

<!-- the call MUST be with event -->
<div onclick="some_function(event)">Foo</div>

JavaScript

// the parameter name can be any name you want
function some_function(evt)
{
    evt.target.innerHTML = "you clicked me!";
}