JSFiddle - React, Tailwind, and code Playground
by sureshbm13
HTML
<input type="text" id="k1" />
JavaScript
$('input').keydown(function(e){
$("#k1").css( { backgroundColor:"blue" } );
});
by sureshbm13
<input type="text" id="k1" />
$('input').keydown(function(e){
$("#k1").css( { backgroundColor:"blue" } );
});