JSFiddle - React, Tailwind, and code Playground
HTML
<input id="textinput" type="text"></input>
JavaScript
$("#textinput").keydown(function(e) {
alert(e.keyCode); // this value
});
<input id="textinput" type="text"></input>
$("#textinput").keydown(function(e) {
alert(e.keyCode); // this value
});