'rowIndex' Example : rowIndex « Javascript Properties « JavaScript Reference

Home
JavaScript Reference
1.Event Handlers Reference
2.Javascript Collections
3.Javascript Methods
4.Javascript Objects
5.Javascript Properties
JavaScript Reference » Javascript Properties » rowIndex 
'rowIndex' Example

<html>
<body>    
<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>
</body>
</html>
    
      
      
Related examples in the same category
1.'rowIndex' Syntax and Note
2.'rowIndex' is applied to
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.