Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

jQuery :even Selector

❮ jQuery Selectors

Example

Select every other (even) <tr> element:

$("tr:even")
Try it Yourself »

Definition and Usage

The :even selector selects each element with an even index number (like: 0, 2, 4, etc.).

The index numbers start at 0.

This is mostly used together with another selector to select every even indexed element in a group (like in the example above).

Tip: Use the :odd selector to select elements with odd index numbers.


Syntax

$(":even")

❮ jQuery Selectors