Javascript examples for DOM HTML Element:Table
The deleteTHead() method removes the <thead> element from the table.
None
No return value
The following code shows how to Remove a <thead> element from a table:
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style>/* w w w. j a va2s . co m*/ </head> <body> <table id="myTable"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$180</td> </tr> </tfoot> <tbody> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </tbody> </table> <br> <button onclick="myFunction()">Test</button> <script> function myFunction() { document.getElementById("myTable").deleteTHead(); } </script> </body> </html>