Javascript examples for DOM HTML Element:Table
The tBodies collection returns all <tbody> elements in a table sorted as they appear in the HTML code.
Property | Description |
---|---|
length | number of <tbody> elements in the collection. |
Method | Description |
---|---|
[index] | <tbody> element with the specified index (starts at 0). |
item(index) | <tbody> element with the specified index (starts at 0). |
namedItem(id) | <tbody> element with the specified id. |
An HTMLCollection Object, representing all <tbody> elements in the <table> element.
The following code shows how to Find out how many <tbody> elements there are in a table:
<!DOCTYPE html> <html> <head> <style> table, td { border: 1px solid black; } </style>/*from w w w . j a va 2 s.com*/ </head> <body> <table id="myTable"> <tbody> <tr> <td>cell 1</td> <td>cell 2</td> </tr> </tbody> <tbody> <tr> <td>cell 3</td> <td>cell 4</td> </tr> </tbody> </table> <br> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myTable").tBodies.length; document.getElementById("demo").innerHTML = "Found " + x + " tbody elements in the table."; } </script> </body> </html>