Table row Index : Row : Table JAVASCRIPT DHTML TUTORIALS


JAVASCRIPT DHTML TUTORIALS » Table » Row »

 

Table row Index



    
<script language="JavaScript">
    function function1(elem) {
        var m = elem.rowIndex; 
        alert("Row Index: "+m);
    }
</script>
<table width="100" border="3" cellspacing="2" cellpadding="2">
   <tr id="tr1" onclick="function1(this);">
       <td>Row 1</td>
   </tr>
   <tr id="tr2" onclick="function1(this);"
       <td>Row 2</td>
   </tr>
   <tr id="tr3" onclick="function1(this);"
       <td>Row 3</td>
   </tr>
   <tr id="tr4" onclick="function1(this);"
       <td>Row 4</td>
   </tr>
</table>

    
      
      



-

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

JAVASCRIPT DHTML TUTORIALS

 Navioo Table
» Row