JSFiddle - React, Tailwind, and code Playground

by Sahin Deniz

HTML

<input type="button" value="click">

JavaScript

$("body").delegate("input",{
  click:function(){
    console.log(this);
  }
})