.css()

Get the value of a computed style property for the first element in the set of matched elements or set one or more CSS properties for every matched element.

.finish()

Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements.

:first-of-type Selector

Selects all elements that are the first among siblings of the same element name.

:lang() Selector

Selects all elements of the specified language.

:last-of-type Selector

Selects all elements that are the last among siblings of the same element name.

:nth-last-child() Selector

Selects all elements that are the nth-child of their parent, counting from the last element to the first.

:nth-last-of-type() Selector

Selects all the elements that are the nth-child of their parent in relation to siblings with the same element name, counting from the last element to the first.

:nth-of-type() Selector

Selects all elements that are the nth child of their parent in relation to siblings with the same element name.

:only-of-type Selector

Selects all elements that have no siblings with the same element name.

:root Selector

Selects the element that is the root of the document.

:target Selector

Selects the target element indicated by the fragment identifier of the document’s URI.

@jQuery API