JSFiddle - React, Tailwind, and code Playground

HTML

<table class="auto-style15" style="width: 100%; height: 100%;">
<tr>
    <td class="auto-style11" rowspan="2" style="width: 70px"><strong>Operation No</strong></td>
    <td class="auto-style22" rowspan="2" style="width: 156px"><strong>Fixture No</strong></td>
    <td class="auto-style22" rowspan="2" style="width: 55px"><strong>Rev</strong></td>
    <td class="auto-style22" colspan="5"><strong>Status</strong></td>
    <td class="auto-style22" rowspan="2" style="width: 59px"><strong>Storage</strong></td>
    <td class="auto-style22" rowspan="2" style="width: 42px"><strong>ChecksTo Be<br />
    Done</strong></td>
    <td class="auto-style22" rowspan="2" style="width: 154px"><strong>Remarks</strong></td>
</tr>
<tr>
    <td class="auto-style11" style="width: 62px"><strong>Design (y/n)</strong></td>
    <td class="auto-style11" style="width: 15px"><strong>Manufacturing 
    </strong> </td>
    <td class="auto-style11" style="width: 57px"><strong>Verification</strong></td>
    <td class="auto-style11" style="width: 44px"><strong>Assembly</strong></td>
    <td class="auto-style11" style="width: 33px"><strong>Validation</strong></td>
</tr>
    <td class="auto-style7" style="width: 70px">
    <input name="Text266" type="text" style="width: 70px" /></td>
    <td class="auto-style7" style="width: 156px">
    <input name="Text135" style="width: 150px" type="text" /></td>
    <td class="auto-style7" style="width: 55px">
    <input name="Text148" style="width: 50px" type="text" /></td>
    <td class="auto-style7" style="width: 62px">
    <input name="Text194" style="width: 60px" type="text" /></td>
    <td class="auto-style7" style="width: 15px">
    <input name="Text204" style="width: 90px" type="text" /></td>
    <td class="auto-style7" style="width: 57px">
    <input name="Text215" style="width: 90px" type="text" /></td>
    <td class="auto-style7" style="width: 44px">
    <input name="Text228" style="width: 60px" type="text" /></td>
    <td class="auto-style7" style="width:...

JavaScript

$('input[type=text]').attr("disabled", "disabled");
$('#edit').click(function(event){
     event.preventDefault();
     $('input').removeAttr("disabled");
});