JSFiddle - React, Tailwind, and code Playground
HTML
<input id="test" type="text" style="color:red;"/>
CSS
#test {
color: red;
}
JavaScript
console.log('hello');
$('#test').keyup();
<input id="test" type="text" style="color:red;"/>
#test {
color: red;
}
console.log('hello');
$('#test').keyup();