Search w3schools.com:

SHARE THIS PAGE

Table tHead Property

Table Object Reference Table Object

Definition and Usage

The tHead property returns a reference to the thead element of a table.

The thead element is used to group the header content in an HTML table.

Syntax

tableObject.tHead


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The tHead property is supported in all major browsers.


Example

Example

Alert the innerHTML of <thead>:

<html>
<head>
<script>
function displayResult()
{
alert(document.getElementById('myTable').tHead.innerHTML);
}
</script>
</head>
<body>

<table id="myTable" border="1">
  <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 type="button" onclick="displayResult()">Show innerHTML of thead</button>

</body>
</html>

Try it yourself »


Table Object Reference Table Object

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]