ExampleSelect all p elements NOT containing a class attribute with the value "intro":
Try it yourself » |
The [attribute!=value] selector selects each element that does not have the specified attribute and value.
Elements with the selected attribute, but with a different value, will be selected.
$("[attribute!=value]") |
Parameter | Description |
---|---|
attribute | Required. Specifies the attribute to find |
value | Required. Specifies the value to find |