JSFiddle - React, Tailwind, and code Playground

HTML

<table>
  <tr>
    <td class="select">Test code 1</td>
    <td>
      <input type='text' id='input1' class="selection" />
    </td>
  </tr>
  <tr>
    <td>Test code 2</td>
    <td>
      <input type='text' id='input2' class="selection" />
    </td>
  </tr>
</table>

JavaScript

$('.select').click(function(){
	$('#input1').val("hello")
})