- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to access index of an element in jQuery?
To access the index of an element in jQuery, use the eq() method. The eq() method refers the position of the element.
Example
You can try to run the following code to learn how to access index of an element in jQuery,
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $('ul li').eq(2).css({'background-color':'#E6B16A'});}); </script> </head> <body> <ul> <li>India</li> <li>US</li> <li>UK</li> <li>Australia</li> </ul> </body> </html>
- Related Articles
- How to access element with nth index in jQuery?
- Access Index of Last Element in pandas DataFrame in Python
- How to append an element before an element using jQuery?
- How to append an element after an element using jQuery?
- How to access an array element in C language?
- How to access an associative array by integer index in PHP?
- What happens if try to access an element with an index greater than the size of the array in Java?
- How to clone an element using jQuery?
- Place an H1 element and its text at a particular index in jQuery
- How to add attributes to an HTML element in jQuery?
- How to get the width of an element using jQuery?
- How to get the height of an element using jQuery?
- How to get HTML content of an element using jQuery?
- How to replace the content of an element using jQuery?
- How to set HTML content of an element using jQuery?

Advertisements