THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

jQuery :odd Selector

jQuery Selectors jQuery Selectors

Example

Select every other (odd) <tr> element:

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

Definition and Usage

The :odd selector selects each element with an odd index number (like: 1, 3, 5, etc.).

The index numbers start at 0.

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

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


Syntax

$(":odd")

jQuery Selectors jQuery Selectors