eq(index) matches a single element by its index. : Selector even odd index « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
                
            $("td:eq(2)").css("color", "red");

                
        });
    </script>

  </head>
  <body>
    <body>
    <table border="1">
        <tr><td>TD #0</td><td>TD #1</td><td>TD #2</td></tr>
        <tr><td>TD #3</td><td>TD #4</td><td>TD #5</td></tr>
        <tr><td>TD #6</td><td>TD #7</td><td>TD #8</td></tr>
    </table>

    </body>
</html>








30.5.Selector even odd index
30.5.1.gt(index) matches all elements with an index above the given one.
30.5.2.even() matches even elements, zero-indexed.
30.5.3.eq(index) matches a single element by its index.
30.5.4.lt(index) matches all elements with an index below the given one.
30.5.5.odd() matches odd elements, zero-indexed.
30.5.6.Even number tags
30.5.7.Matches all elements with an index above the given one
30.5.8.Matches all elements with an index below the given one
30.5.9.Matches even elements, zero-indexed
30.5.10.Matches odd elements, zero-indexed.htm
30.5.11.Odd number paragraph
30.5.12.Positional selectors supported by jQuery: selecting elements based on their position in the DOM
30.5.13.Matches a single element by its index