odd() matches odd elements, zero-indexed. : Selector even odd index « jQuery « JavaScript DHTML






odd() matches odd elements, zero-indexed.

  

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
               
               
               $("tr:odd").css("background-color", "#bbbbff");
        });
    </script>

  </head>
  <body>
    <body>
    <table>
        <tr><td>First</td></tr>
        <tr><td>Middle</td></tr>
        <tr><td>Last</td></tr>
    </table>


    </body>
</html>

   
    
  








Related examples in the same category

1.gt(index) matches all elements with an index above the given one.
2.even() matches even elements, zero-indexed.
3.eq(index) matches a single element by its index.
4.lt(index) matches all elements with an index below the given one.
5.Even number tags
6.Matches all elements with an index above the given one
7.Matches all elements with an index below the given one
8.Matches even elements, zero-indexed
9.Matches odd elements, zero-indexed.htm
10.Odd number paragraph
11.Positional selectors supported by jQuery: selecting elements based on their position in the DOM
12.Matches a single element by its index