Is there a way to handle multiple consecutive table rows (<tr>) as a single DOM object? I have a table whose “logical child” spans for multiple rows (in my particular case, two). When displayed, they are mixed with the other rows, but I want to be able to manipulate (move, delete, hide, etc) those rows as a single DOM object.
Is there a way to handle multiple consecutive table rows ( <tr> ) as
Share
Yes, place them in their own
<tbody>element.