THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

jQuery [attribute!=value] Selector

jQuery Selectors jQuery Selectors

Example

Select all <p> elements NOT containing a class attribute with the value "intro":

$("p[class!='intro']")
Try it yourself »

Definition and Usage

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.


Syntax

$("[attribute!='value']")

Parameter Description
attribute Required. Specifies the attribute to find
value Required. Specifies the value to find

jQuery Selectors jQuery Selectors