JSFiddle - React, Tailwind, and code Playground
by Flandre
HTML
<input id="test" type="text"/>
<input type="text"/>
JavaScript
function test(){
}
$("input").on("change", function(e){
alert("test" + e.target);
});
$("input").change();