![]() |
VOOZH | about |
The removeClass() method is an inbuilt method in jQuery that is used to remove one or more class names from the selected element.
Syntax:
$(selector).removeClass(class_name, function(index, current_class_name))
Parameters: This function accepts two parameters as mentioned above and described below:
Return Value: This method returns the selected element with the specified removed class name.
The below examples illustrate the removeClass() method in jQuery:
Example 1:
Output:
Example 2: This example does not contain a parameter. This will remove all classes for the selected element.
Output:
Related Articles: