{"name":"eq","type":"method","title":".eq()","deprecated":null,"removed":null,"desc":"Reduce the set of matched elements to the one at the specified index.","categories":["traversing/filtering","version/1.1.2"],"entries":[{"return":"jQuery","signatures":[{"added":"1.1.2","argument":{"desc":"An integer indicating the 0-based position of the element. ","name":"index","type":"Integer"}},{"added":"1.4","argument":{"desc":"An integer indicating the position of the element, counting backwards from the last element in the set. ","name":"-index","type":"Integer"}}],"examples":{"desc":"Turn the div with index 2 blue by adding an appropriate class.","code":"\n$( \"body\" ).find( \"div\" ).eq( 2 ).addClass( \"blue\" );\n","css":"\n div {\n width: 60px;\n height: 60px;\n margin: 10px;\n float: left;\n border: 2px solid blue;\n }\n .blue {\n background: blue;\n }\n","html":"\n
\n
\n
\n
\n
\n
\n"},"longdesc":"\n

Given a jQuery object that represents a set of DOM elements, the .eq() method constructs a new jQuery object from one element within that set. The supplied index identifies the position of this element in the set.

\n

Consider a page with a simple list on it:

\n
\n<ul>\n  <li>list item 1</li>\n  <li>list item 2</li>\n  <li>list item 3</li>\n  <li>list item 4</li>\n  <li>list item 5</li>\n</ul>\n    
\n

We can apply this method to the set of list items:

\n
\n$( \"li\" ).eq( 2 ).css( \"background-color\", \"red\" );\n    
\n

The result of this call is a red background for item 3. Note that the supplied index is zero-based, and refers to the position of the element within the jQuery object, not within the DOM tree.

\n

Providing a negative number indicates a position starting from the end of the set, rather than the beginning. For example:

\n
\n$( \"li\" ).eq( -2 ).css( \"background-color\", \"red\" );\n    
\n

This time list item 4 is turned red, since it is two from the end of the set.

\n

If an element cannot be found at the specified zero-based index, the method constructs a new jQuery object with an empty set and a length property of 0.

\n
\n$( \"li\" ).eq( 5 ).css( \"background-color\", \"red\" );\n    
\n

Here, none of the list items is turned red, since .eq( 5 ) indicates the sixth of five list items.

\n "}]}