Open In App

HTML DOM TableRow sectionRowIndex Property

The TableRow sectionRowIndex property in HTML DOM is used to return the position of a row in the rows collection of a <thead>, <tbody>, or <tfoot> element. 

Syntax: It returns the sectionRowIndex property.



tablerowObject.sectionRowIndex 

Return Value: It returns a numeric value which represents the position of the row in the rows collection of a <thead>, <tbody>, or <tfoot> element. 

Example: 






<!DOCTYPE html>
<html>
     
<head>
    <title>
        HTML DOM TableRow sectionRowIndex Property
 
    </title>
 
    <style>
        table, th, td {
            border: 1px solid green;
        }
    </style>
</head>
 
<body>
 
    <h1>
        GeeksForGeeks
    </h1>
         
    <h2>HTML DOM sectiontableRow rowIndex Property</h2>
     
    <p>
        Click on the row to get the
        section index of the rows
    </p>
     
    <table>
        <tr id = "GFG" onclick="myGeeks(this)">
            <td>Geeks</td>
            <td>Geeks</td>
            <td>For</td>
            <td>Geeks</td>
        </tr>
        <tr id = "GFG" onclick="myGeeks(this)">
            <td>Geeks</td>
            <td>Geeks</td>
            <td>For</td>
            <td>Geeks</td>
        </tr>
        <tr id = "GFG" onclick="myGeeks(this)">
            <td>Geeks</td>
            <td>Geeks</td>
            <td>For</td>
            <td>Geeks</td>
        </tr>
    </table>
 
    <p id = "sudo"></p>
 
    <script>
        function myGeeks(x) {
            alert("sectionRow index is: "
                    + x.sectionRowIndex);
        }
    </script>
</body>
 
</html>          

Output:

 

 

Supported Browsers: The browsers supported by HTML DOM TableRow sectionRowIndex property are listed below:


Article Tags :