JSFiddle - React, Tailwind, and code Playground
by Sahin Deniz
HTML
<input type="button" value="click">
JavaScript
$("body").delegate("input",{
click:function(){
console.log(this);
}
})
by Sahin Deniz
<input type="button" value="click">
$("body").delegate("input",{
click:function(){
console.log(this);
}
})