Javascript Collections JavaScript Reference

Note:
Returns an array of all  elements in a table, both specified and implied.
    
Syntax:
    
document.getElementById("tableID").tBodies // returns all tbodies
document.getElementById("tableID").tBodies(param1, param2) // returns an individual tbody
document.all.tableID.tbodies // IE only
document.all.tableID.tbodies(param1, param2) // IE only
Parameters:
    param1   Required; zero-based index
                       the desired member's id or name attribute.
                       
    param2   Optional; the zero-based index for the resultset 
                       if param1 matches more than one element.