jQuery – Get and Set CSS Classes
jQuery has various methods for CSS manipulation which are listed below:
- addClass (): Adds one or more classes to the selected elements
- removeClass (): Removes one or more classes from selected elements
- toggleClass (): Toggles between adding or removing classes from selected elements
- css (): Sets or returns style attribute
You can use these methods to manipulate CSS class or style properties of DOM elements2. For example, you can use the addClass() method to add single or multiple css class to the specified element(s)2.
I hope this helps! Let me know if you have any other questions.
// Get class
var className = $(selector).attr("class");
// Set class
$(selector).attr("class", "className");
$("button").click(function(){
$("p").toggleClass("main");
});