JSFiddle - React, Tailwind, and code Playground
by karim79
HTML
<input />
JavaScript
$("input")[0].oninput = function () {
alert("hello");
};
$("input")[0].oninput();
by karim79
<input />
$("input")[0].oninput = function () {
alert("hello");
};
$("input")[0].oninput();