File "test09.php"
Full Path: /home/analogde/www/Bookmarks/CHESS_ON/test09.php
File size: 621 bytes
MIME-type: text/html
Charset: utf-8
<!DOCTYPE html>
<html>
<head>
<style>
table, td {
border:1px solid black;
}
.highlighted {
background: red;
}
.nonhighlighted {
background: white;
}
</style>
</head>
<body>
<p>Click on each tr element to alert its index position in the table:</p>
<table>
<tr onclick="myFunction(this)">
<td>Click to show rowIndex</td>
</tr>
<tr onclick="myFunction(this)">
<td>Click to show rowIndex</td>
</tr>
<tr onclick="myFunction(this)">
<td>Click to show rowIndex</td>
</tr>
</table>
<script>
function myFunction(x) {
alert("Row index is: " + x.rowIndex);
}
</script>
</body>
</html>