ExampleSelect all p elements except those with class="intro":
Try it yourself » |
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).
$(":not(selector)") |
Parameter | Description |
---|---|
selector | Required. Specifies the element to not select. This parameter accepts any kind of selector. |