JSFiddle - React, Tailwind, and code Playground
by irama
HTML
<input type="text" id="test" >
JavaScript
$('#test')
.change(function(){
alert('change event fired');
})
.keyup(function(){
$(this).trigger('change');
})
;