.filter()

Reduce the set of matched elements to those that match the selector or pass the function's test.

.filter(selector)🡢 jQuery

selector SelectorA string containing a selector expression to match the current set of elements against.

.filter(function(indexInteger, elementElement))🡢 Boolean

function(indexInteger, elementElement) FunctionA function used as a test for each element in the set. this is the current DOM element.

.filter(elements)🡢 jQuery

elements ElementOne or more DOM elements to match the current set of elements against.

.filter(selection)🡢 jQuery

selection jQueryAn existing jQuery object to match the current set of elements against.

Given a jQuery object that represents a set of DOM elements, the .filter() method constructs a new jQuery object from a subset of the matching elements. The supplied selector is tested against each element; all elements matching the selector will be included in the result.

Consider a page with a simple list on it:

<ul>
  <li>list item 1</li>
  <li>list item 2</li>
  <li>list item 3</li>
  <li>list item 4</li>
  <li>list item 5</li>
  <li>list item 6</li>
</ul>

We can apply this method to the set of list items:

$("li").filter(":nth-child(2n)").css("background-color", "red");

The result of this call is a red background for items 2, 4, and 6, as they match the selector.

Using a Filter Function

The second form of this method allows us to filter elements against a function rather than a selector. For each element, if the function returns true (or a "truthy" value), the element will be included in the filtered set; otherwise, it will be excluded. Suppose we have a somewhat more involved HTML snippet:

<ul>
  <li><strong>list</strong> item 1 - one strong tag</li>
  <li>
    <strong>list</strong> item <strong>2</strong> - two <span>strong tags</span>
  </li>
  <li>list item 3</li>
  <li>list item 4</li>
  <li>list item 5</li>
  <li>list item 6</li>
</ul>

We can select the list items, then filter them based on their contents:

$("li")
  .filter(function (index) {
    return $("strong", this).length === 1;
  })
  .css("background-color", "red");

This code will alter the first list item only, as it contains exactly one <strong> tag. Within the filter function, this refers to each DOM element in turn. The parameter passed to the function tells us the index of that DOM element within the set matched by the jQuery object.

We can also take advantage of the index passed through the function, which indicates the 0-based position of the element within the unfiltered set of matched elements:

$("li")
  .filter(function (index) {
    return index % 3 === 2;
  })
  .css("background-color", "red");

This alteration to the code will cause the third and sixth list items to be highlighted, as it uses the modulus operator (%) to select every item with an index value that, when divided by 3, has a remainder of 2.

Note: When a CSS selector string is passed to .filter(), text and comment nodes will always be removed from the resulting jQuery object during the filtering process. When a specific node or array of nodes are provided, a text or comment node will be included in the resulting jQuery object only if it matches one of the nodes in the filtering array.

Change the color of all divs; then add a border to those with a "middle" class.

JS
<div></div>
<div class="middle"></div>
<div class="middle"></div>
<div class="middle"></div>
<div class="middle"></div>
<div></div>
CSS
div {
  width: 60px;
  height: 60px;
  margin: 5px;
  float: left;
  border: 2px white solid;
}
HTML
$("div")
  .css("background", "#c8ebcc")
  .filter(".middle")
  .css("border-color", "red");
DEMO

Change the color of all divs; then add a border to the second one (index == 1) and the div with an id of "fourth."

JS
<div id="first"></div>
<div id="second"></div>
<div id="third"></div>
<div id="fourth"></div>
<div id="fifth"></div>
<div id="sixth"></div>
CSS
div {
  width: 60px;
  height: 60px;
  margin: 5px;
  float: left;
  border: 3px white solid;
}
HTML
$("div")
  .css("background", "#b4b0da")
  .filter(function (index) {
    return index === 1 || $(this).attr("id") === "fourth";
  })
  .css("border", "3px double red");
DEMO

Select all divs and filter the selection with a DOM element, keeping only the one with an id of "unique".

HTML
$("div").filter(document.getElementById("unique"));
DEMO

Select all divs and filter the selection with a jQuery object, keeping only the one with an id of "unique".

HTML
$("div").filter($("#unique"));
DEMO

Looking for a Web Developer?

👋

Hi! I'm Basti, author of this site. If you are looking for a web developer with 15+ years of experience, holla at me!

Be it the good 'ol jQuery, vanilla JS or modern frameworks like Vue and Svelte, front- or backend, I can help you.

Just write me at jobs@jqapi.com :)