JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<div class="a">
  <table class="tb">
    <tr>
      <td><input type="text"></td>
      </tr>
  </table>
</div>

JavaScript

$(".a table tr td").on("keypress", function (event) {
  console.log(event.key);
});