- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we use .not() with jQuery selector?
The .not() is used to select all <p> elements except an element, which can be specified.
Example
You can try to run the following code to learn how to use .not() with jQuery selector.
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p:not(.myclass)").css("background-color", "red"); }); </script> </head> <body> <h1>Heading</h1> <p class="myclass">This is demo text.</p> <p>This is another text.</p> </body> </html>
- Related Articles
- How do we use jQuery selector eq:()?
- How do we use jQuery Attribute selector with a period?
- How do we use # in jQuery Attribute Selector?
- How do we use wildcard or regular expressions with a jQuery selector?
- jQuery :not() Selector
- How to use universal (*) selector in jQuery?
- Why do we use jQuery over JavaScript?
- How to use *= operator in jQuery attribute selector?
- Why do we use JSON.stringify() method in jQuery?
- Where do we use $.extend() method in jQuery?
- Is it possible to use $(this) and universal selector (*) with jQuery?
- jQuery :has() Selector with example
- How to combine a class selector and an attribute selector with jQuery?
- How to use jQuery selector for the elements with an ID that ends with a given string?
- How do I use jQuery effects?

Advertisements