JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<input id="search"></input>
</body>
JavaScript
$('#search').on('keyup', function (ev, a) {
alert('hii');
})
<body>
<input id="search"></input>
</body>
$('#search').on('keyup', function (ev, a) {
alert('hii');
})