
- jQuery Tutorial
- jQuery - Home
- jQuery - Roadmap
- jQuery - Overview
- jQuery - Basics
- jQuery - Syntax
- jQuery - Selectors
- jQuery - Events
- jQuery - Attributes
- jQuery - AJAX
- jQuery DOM Manipulation
- jQuery - DOM
- jQuery - Add Elements
- jQuery - Remove Elements
- jQuery - Replace Elements
- jQuery CSS Manipulation
- jQuery - CSS Classes
- jQuery - Dimensions
- jQuery - CSS Properties
- jQuery Traversing
- jQuery - Traversing
- jQuery - Traversing Ancestors
- jQuery - Traversing Descendants
- jQuery References
- jQuery - Selectors
- jQuery - Events
- jQuery - Effects
- jQuery - HTML/CSS
- jQuery - Traversing
- jQuery - Miscellaneous
- jQuery - Properties
- jQuery - Utilities
- jQuery Plugins
- jQuery - Plugins
- jQuery - PagePiling.js
- jQuery - Flickerplate.js
- jQuery - Multiscroll.js
- jQuery - Slidebar.js
- jQuery - Rowgrid.js
- jQuery - Alertify.js
- jQuery - Progressbar.js
- jQuery - Slideshow.js
- jQuery - Drawsvg.js
- jQuery - Tagsort.js
- jQuery - LogosDistort.js
- jQuery - Filer.js
- jQuery - Whatsnearby.js
- jQuery - Checkout.js
- jQuery - Blockrain.js
- jQuery - Producttour.js
- jQuery - Megadropdown.js
- jQuery - Weather.js
jQuery eq() Method
The eq() method in jQuery is used to reduce the set of matched elements to the one at the specified index.
The method takes an argument called "index," which indicates the position of the element. This index can be either positive or negative. The index value will start from 0 and so on. That means the first element will have an index number 0.
If we provide a "negative" value as an index, it will start the index count from the end of the selected elements rather than the beginning.
Syntax
Following is the syntax of eq() method in jQuery −
$(selector).eq(index)
Parameters
This method accepts the following parameter −
index: An integer specifying the index of the element. It can be either positive or negative number.
Example 1
In the following example, we are using the eq() method to select the second list item and highlights it when clicked −
<html> <head> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script> $(document).ready(function() { $('li').eq(1).css("background-color", "yellow"); }); </script> </head> <body> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </body> </html>
When we execute the above program, second item (index 1) will have a yellow background.
Example
The following example modifies the text of the third paragraph −
<html> <head> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script> $(document).ready(function() { $('p').eq(2).text('This paragraph has been modified.'); }); </script> </head> <body> <p>This is the first paragraph.</p> <p>This is the second paragraph.</p> <p>This is the third paragraph.</p> </body> </html>
When we execute the above program, third paragraph (index 2) will be modified.
Example 2
In the below example, we are providing a negative index value as a parameter to eq() method −
<html> <head> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script> $(document).ready(function() { $('p').eq(-2).hide(); }); </script> </head> <body> <p>This is the first paragraph.</p> <p>This is the second paragraph.</p> <p>This is the third paragraph.</p> </body> </html>
When we execute the above program, eq() will start the index count from the end of the selected elements hides the second element from the end.