.not()

Remove elements from the set of matched elements.

.not(selector)🡢 jQuery

selector Selector, Element, ArrayA string containing a selector expression, a DOM element, or an array of elements to match against the set.

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

function(indexInteger, elementElement) FunctionA function used as a test for each element in the set. It accepts two arguments, index, which is the element's index in the jQuery collection, and element, which is the DOM element. Within the function, this refers to the current DOM element.

.not(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 .not() method constructs a new jQuery object from a subset of the matching elements. The supplied selector is tested against each element; the elements that don't match 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>
</ul>

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

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

The result of this call is a red background for items 1, 3 and 5, as they do not match the selector.

Removing Specific Elements

The second version of the .not() method allows us to remove elements from the matched set, assuming we have found those elements previously by some other means. For example, suppose our list had an id applied to one of its items:

<ul>
  <li>list item 1</li>
  <li>list item 2</li>
  <li id="notli">list item 3</li>
  <li>list item 4</li>
  <li>list item 5</li>
</ul>

We can fetch the third list item using the native JavaScript getElementById() function, then remove it from a jQuery object:

$("li").not(document.getElementById("notli")).css("background-color", "red");

This statement changes the color of items 1, 2, 4, and 5. We could have accomplished the same thing with a simpler jQuery expression, but this technique can be useful when, for example, other libraries provide references to plain DOM nodes.

As of jQuery 1.4, the .not() method can take a function as its argument in the same way that .filter() does. Elements for which the function returns true are excluded from the filtered set; all other elements are included.

Note: When a CSS selector string is passed to .not(), 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, text or comment nodes will only be removed from the jQuery object if they match one of the nodes in the filtering array.

Adds a border to divs that are not green or blue.

JS
<div></div>
<div id="blueone"></div>
<div></div>
<div class="green"></div>
<div class="green"></div>
<div class="gray"></div>
<div></div>
CSS
div {
  width: 50px;
  height: 50px;
  margin: 10px;
  float: left;
  background: yellow;
  border: 2px solid white;
}
.green {
  background: #8f8;
}
.gray {
  background: #ccc;
}
#blueone {
  background: #99f;
}
HTML
$("div").not(".green, #blueone").css("border-color", "red");
DEMO

Removes the element with the ID "selected" from the set of all paragraphs.

HTML
$("p").not($("#selected")[0]);
DEMO

Removes the element with the ID "selected" from the set of all paragraphs.

HTML
$("p").not("#selected");
DEMO

Removes all elements that match "div p.selected" from the total set of all paragraphs.

HTML
$("p").not($("div p.selected"));
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 :)