jQuery.find()


jQuery.find()

Description: The jQuery selector engine, formerly known as Sizzle, is exposed under jQuery.find. This page describes all the APIs under jQuery.find.

Note

jQuery selector engine first tries to run the passed selector — with some modifications — through native querySelectorAll, so selectors natively supported by the current browsers generally work out of the box. However, if the browser does not recognize the selector, jQuery does the whole selection on its own. Some newer selectors may not work with such a jQuery selection.

Selectors

CSS 3

jQuery supports virtually all CSS 3 Selectors, including escaped selectors (.foo\+bar), Unicode selectors, and results returned in document order. The only exceptions are those that would require additional DOM event listeners to keep track of the state of elements.

As such, the following pseudo-selectors are not supported:

  • :hover
  • :active
  • :visited, :link

Note: These CSS3 pseudo-selectors were unsupported prior to version 1.9:

  • :target
  • :root
  • :nth-last-child
  • :nth-of-type, :nth-last-of-type, :first-of-type, :last-of-type, :only-of-type
  • :lang()

Other selectors and conventions

Changes

  • Full selector lists in :not(); e.g. :not(a.b), :not(div > p), :not(div, p)
  • Nested pseudo-selectors; e.g. :not(:has(div:first-child))

Additions

  • [NAME!=VALUE]: Elements whose NAME attribute doesn't match the specified value. Equivalent to :not([NAME=VALUE]).
  • :contains(TEXT): Elements with textContent containing the word 'TEXT'. Case-sensitive.
  • :header: Header elements (h1, h2, h3, h4, h5, h6).
  • :parent: Elements with at least one child node (either text or an element).
  • :selected: (option) elements that are currently selected

Form Selector Additions

Note: In this context, input, button, select, and textarea are all considered to be input elements.

  • :input: Input elements
  • :button: Input elements that are buttons or have type "button"
  • :checkbox, :file, :image, :password, :radio, :reset, :submit, :text: Input elements with the specified type

Positional Selector Additions

In this context, "positional" refers to an element's placement in the collection after a selection, based on document order. For example, div:first would return an array containing the first div on the page, while div:first em would target the first div on the page and select all em elements within.

Note: Positional indexes begin at zero.

  • :first/:last: The first/last matching element
  • :even/:odd: Even/odd-numbered elements
  • :eq/:nth: The nth element; e.g. :eq(5) finds the 6th element
  • :lt/:gt: Elements at positions above/below the specified position

API

The jQuery Selection API consists of 3 parts:

Public API

jQuery.find( String selector[, DOMNode context[, Array results]] )

The main function for finding elements. Uses querySelectorAll if available.

returns (Array): All elements matching the selector

Parameters

selector: A CSS selector

context: An element, document, or document fragment to use as the context for finding elements. Defaults to document. Note: Prior to version 2.1, document fragments were not valid here.

results: An array or an array-like object, to which jQuery will append results. For example, jQuery passes a jQuery collection. An "array-like object" is an object with a nonnegative numeric length property and a push method.

jQuery.find.matchesSelector( DOMElement element, String selector )

Uses native matchesSelector if available

returns(Boolean): Whether the given element matches the selector

Parameters

element: A DOMElement against which jQuery will test the selector

selector: A CSS selector

jQuery.find.matches( String selector, Array<DOMElement> elements )

returns(Array): Elements in the array that match the given selector

Parameters

selector: A CSS selector

elements: An array of DOMElements to filter against the specified selector

Extension API

jQuery.expr.match.NAME = RegExp

This contains the regular expressions used to parse a selector into different parts, to be used for finding and filtering. The name of each of the regular expressions should correspond to the names specified in the jQuery.expr.find and jQuery.expr.filter objects.

Finding

In order to add a new find function:

  • A regular expression must be added to the match object.
  • A function to find must be defined.
  • "|" + NAME must be appended to the jQuery.expr.order regex.
jQuery.expr.find.NAME = function( match, context, isXML ) {}

A method for finding some elements on a page. The specified function will be called no more than once per selector.

  • match is the array of results returned from matching the specified regex against the selector.
  • context is the DOMElement or DOMDocument from which selection will occur.
  • isXML is a boolean value indicating whether the function is currently operating within an XML document.

Filtering

In order to add a new filtering statement:

  • A regular expression must be added to the match object.
  • A function must be added to the filter object.
  • A function may optionally be added to the preFilter object.
jQuery.expr.preFilter.NAME = function( match ) {}

An optional pre-filter function which allows filtering of the matched array against the corresponding regular expression, which will return a new matched array. This matched array will eventually be passed and flattened as arguments against the corresponding filter function. This is intended to clean up some of the repetitive processing that occurs in a filter function.

jQuery.expr.filter.NAME: function( element, match[1][, match[2], match[3], ...] ) {}

Note: match[0] will be deleted prior to being passed to a filter, and must not be used.

The arguments for a filter method are the element and the captures from the regex corresponding to this filter (indicated above by what is in the match, starting at index 1). The return result must be boolean: true if the element matches the selector, false if not.

Attributes

jQuery.expr.attrHandle.LOWERCASE_NAME = function( elem, casePreservedName, isXML ) {}

Handle an attribute which requires specialized processing (such as href, which has cross-browser issues). The return result must be the actual string value of that attribute.

Pseudo-selectors (pseudos)

jQuery.expr.pseudos.NAME = function( elem ) {}

The most common extension to a selector engine: adding a new pseudo. The return result from this function must be boolean: true if the element matches the selector, false if not.

For example, this defines a simple :fixed pseudo:

1
2
3
4
5
var $test = jQuery( document );
jQuery.expr.pseudos.fixed = function( elem ) {
$test[ 0 ] = elem;
return $test.css( "position" ) === "fixed";
};
jQuery.expr.createPseudo( function )

createPseudo is only required if the custom pseudo-selector accepts an argument.

Note: In jQuery 1.8 and earlier, the API for creating custom pseudos with arguments was broken. In jQuery 1.8.1+, the API is backwards-compatible. Regardless, the use of createPseudo is greatly encouraged.

Now that the parser compiles a single function containing other functions, custom pseudo-selectors with arguments are much cleaner.

For example, within jQuery, the implementation of the :not( <sub-selector> ) pseudo is very similar to:

1
2
3
4
5
6
7
jQuery.expr.pseudos.not =
jQuery.expr.createPseudo( function( subSelector ) {
var matcher = jQuery.find.compile( subSelector );
return function( elem ) {
return !matcher( elem );
};
} );
jQuery.expr.setFilters.LOWERCASE_NAME = function( elements, argument, not ) {}

These filters are run after a previous part of a selector has already returned results. setFilters are found from matching jQuery.expr.match.POS. When applicable, argument is expected to be an integer. The not argument is a boolean indicating whether the result should be inverted (as in div:not(:first)).

For example, the code for the :first setFilter is similar to:

1
2
3
4
5
var first = function( elements, argument, not ) {
// No argument for first
return not ? elements.slice( 1 ) : [ elements[ 0 ] ];
};
jQuery.expr.setFilters.first = first;

It is easy to extend jQuery selection engine — even jQuery's POS selectors. For example, to rename :first as :uno:

1
2
3
4
jQuery.expr.match.POS = new RegExp( oldPOS.source.replace( "first", "uno" ), "gi" );
jQuery.expr.setFilters.uno = jQuery.expr.setFilters.first;
delete jQuery.expr.setFilters.first;
jQuery.find( "div:uno" ); // ==> [ <div> ]

Internal API

Note: Functionality should be accessed via the Public and Extension APIs. While the Internal API is intended specifically for internal use, it has been exposed for edge cases.

jQuery.expr.cacheLength

jQuery internally caches compiled selector functions and tokenization objects. The length of these caches defaults to 50, but can be set to any positive integer by assigning to this property.

jQuery.find.compile( selector )

This method compiles a selector function and caches it for later use. For example, calling jQuery.find.compile( ".myWidget:myPseudo" ) during initialization of a plugin will speed up the first selection of matching elements.

returns(Function): The compiled function to be used when filtering the set of possibly matching elements

Parameters

selector: A CSS selector