JSFiddle - React, Tailwind, and code Playground
by gbsandeep
HTML
<input type="text" onchange="func1(this)" />
JavaScript
function func1(item){
alert('1');
}
by gbsandeep
<input type="text" onchange="func1(this)" />
function func1(item){
alert('1');
}