THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

TableRow rowIndex Property

TableRow Object Reference TableRow Object

Example

Click on different rows to alert their index position:

alert("Row index is: " + x.rowIndex);
Try it yourself »

Definition and Usage

The rowIndex property returns the position of a row in the rows collection of a table.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The rowIndex property is supported in all major browsers.


Syntax

Return the rowIndex property:

tablerowObject.rowIndex

Technical Details

Return Value: A Number, representing the position of the row in the rows collection of a table

More Examples

Example

Return the index position of each row in a table:

var x = document.getElementsByTagName("tr");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
    txt = txt + "The index of Row "+(i+1)+" is: "+x[i].rowIndex+"<br>";
}
Try it yourself »

TableRow Object Reference TableRow Object