jQuery :not() Selector

jQuery Selectors jQuery Selectors

Example

Select all <p> elements except those with class="intro":

$("p:not(.intro)")

Try it yourself »

Definition and Usage

The :not() selector selects all elements except the specified element.

This is mostly used together with another selector to select everything except the specified element in a group (like in the example above).


Syntax

$(":not(selector)")

Parameter Description
selector Required. Specifies the element to not select.
This parameter accepts any kind of selector
 

jQuery Selectors jQuery Selectors


Color Picker

colorpicker