JSFiddle - React, Tailwind, and code Playground

by doug65536

HTML

<table>
    <tr>
        <td>Visible</td>
        <td style="display:none">Hidden</td>
    </tr>
</table>

JavaScript

$('body').append($('<pre/>').text($('table').prop('outerHTML')));
$('body').append($('<pre/>').text($('tr').find(':hidden').length));
$('body').append($('<hr>'));
$('tr').find(':hidden').remove();
$('body').append($('<pre/>').text($('table').prop('outerHTML')));
$('body').append($('<pre/>').text($('tr').find(':hidden').length));