Javascript DOM HTML TBody Object get

Introduction

The TBody object represents an HTML <tbody> element.

We can access a <tbody> element via document.getElementById():

var x = document.getElementById("myTBody");

Click the button to change the style of the TBODY element.

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
  border: 1px solid black;
}
</style>//from   w  w  w  .ja  v a 2  s . c om
</head>
<body>

<table>
 <tbody id="myTBody">
   <tr>
     <td>Cell 1</td>
     <td>Cell 2</td>
   </tr>
  </tbody>
</table>
<button onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {
  var x = document.getElementById("myTBody");
  x.style.color = "red";
}
</script>

</body>
</html>



PreviousNext

Related