JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr name="see items ordered">
        <td>
            Test 1
        </td>
    </tr>
    <tr>
        <td>
            Test 2
        </td>
    </tr>
</table>

JavaScript

var xyz = document.getElementsByName("see items ordered");
xyz[0].style.display="none";