
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Remove All CSS Classes Using jQuery
To remove all classes, use the removeClass() method with no parameters. This will remove all of the item's classes.
Example
You can try to run the following code to remove all CSS classes using jQuery:
<html> <head> <title>jQuery Selector</title> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function() { $("#button1").click(function(){ $("p").removeClass(); }); }); </script> <style> .red { color:red; } .blue { color:blue; } </style> </head> <body> <p class = "red" >This is first paragraph.</p> <p class = "blue">This is second paragraph.</p> <button id="button1">Remove</button> </body> </html>
Advertisements