jQuery :nth of type() Selector
jQuery :nth-of-type() Selector
The :nth-of-type(n) selector is used to select all elements that are the nth-child that belong to a particular type, of their parent.
Syntax:-
Its syntax is:- :nth-of-type(n | even | odd | formula);
Further Explanation:-
Parameter | Description |
---|---|
n | The index of each child to match. |
even | Selects each even child element |
odd | Selects each odd child element |
formula | Specifies which child element(s) to be selected with a formula (an + b). |
Code Explanation
All Tutorials related to jQuery Selectors
* Selector in jQuery
#id Selector in jQuery
.class Selector in jQuery
multiple classes Selector in jQuery
element Selector in jQuery
multiple elements Selector in jQuery
:first Selector in jQuery
:last Selector in jQuery
:even Selector in jQuery
:odd Selector in jQuery
:first-child Selector in jQuery
:first-of-type Selector in jQuery
:last-child Selector in jQuery
:last-of-type Selector in jQuery
:nth-child() Selector in jQuery
:nth-last-child() Selector in jQuery
:nth-of-type() Selector in jQuery
:nth-last-of-type() Selector in jQuery
:only-child Selector in jQuery
:only-of-type Selector in jQuery
parent > child Selector in jQuery
parent descendant Selector in jQuery
element + next Selector in jQuery
element ~ siblings Selector in jQuery
:eq() Selector in jQuery
:gt() Selector in jQuery
:lt() Selector in jQuery
:not() Selector in jQuery
:header Selector in jQuery
:animated Selector in jQuery
:focus Selector in jQuery
:contains() Selector in jQuery
:has() Selector in jQuery
:empty Selector in jQuery
:parent Selector in jQuery
:hidden Selector in jQuery
:visible Selector in jQuery
:root Selector in jQuery
:lang() Selector in jQuery
[attribute] Selector in jQuery
[attribute=value] Selector in jQuery
[attribute!=value] Selector in jQuery
[attribute$=value] Selector in jQuery
[attribute|=value] Selector in jQuery
[attribute^=value] Selector in jQuery
[attribute~=value] Selector in jQuery
[attribute*=value] Selector in jQuery
:input Selector in jQuery
:text Selector in jQuery
:password Selector in jQuery
:radio Selector in jQuery
:checkbox Selector in jQuery
:submit Selector in jQuery
:reset Selector in jQuery
:button Selector in jQuery
:image Selector in jQuery
:file Selector in jQuery
:enabled Selector in jQuery
:disabled Selector in jQuery
:selected Selector in jQuery
:checked Selector in jQuery