{"name":"attributeNotEqual","type":"selector","title":"Attribute Not Equal Selector [name!=\"value\"]","deprecated":null,"removed":null,"desc":"Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.","categories":["selectors/attribute-selectors","selectors/jquery-selector-extensions","version/1.0"],"entries":[{"return":"","signatures":{"added":"1.0","argument":[{"desc":"An attribute name.","name":"attribute","type":"String"},{"desc":"An attribute value. Can be either an unquoted single word or a quoted string.","name":"value","type":"String"}]},"examples":{"desc":"Finds all inputs that don't have the name 'newsletter' and appends text to the span next to it.","code":"\n$( \"input[name!='newsletter']\" ).next().append( \"; not newsletter\" );\n","html":"\n
This selector is equivalent to :not([attr='value']).