Javascript Collections JavaScript Reference




    
        Row 1
        Row 2
        Row 3
    
    
        Row 4
        Row 5
        Row 6
    

Get total number of tbody elements

    function function1() {
        var m = document.getElementById("myTable").tBodies.length; 
        alert(m); 
    }