JSFiddle - React, Tailwind, and code Playground

by Tri Nguyen

HTML

<table>
<tr><td><input id = "123" type="text" value = ""></td></tr>
<tr><td><input type="text" value = ""></td></tr>
</table>

CSS

.change {
    background-color: red;
    width: 100px;
    height: 100px;
    color: red;
}

JavaScript

$( "input" ).change(function() {
  alert( "Handler for .change() called." );
});