eq(index) returns the element position in matched elements starts at 0 and goes to length - 1. : eq « jQuery « JavaScript DHTML






eq(index) returns the element position in matched elements starts at 0 and goes to length - 1.

  


<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
                $("div").eq(2).css("color","blue");
        });
    </script>
    <style>
      .selected { color:red; }
      .highlight { background:yellow; }
    </style>    
  </head>
  <body>
    <body>
          <div id="single">asdf</div>
          <div id="single">asdf</div>
          <div id="single">asdf</div>
          <div id="single">asdf</div>
    </body>
</html>

   
    
  








Related examples in the same category

1.Reduce the set of matched elements to a single element
2.Reduces the selection to the second selected element.
3.eq: select by index