javascript clear table body

Solutions on MaxInterview for javascript clear table body by the best coders in the world

showing results for - "javascript clear table body"
Adil
04 Oct 2020
1$("#tbodyid").empty();
2
Max
10 Jan 2021
1<table>
2    <tbody id="tbodyid">
3        <tr>
4            <td>something</td>
5        </tr>
6    </tbody>
7</table>
8