Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove all classes except one

Well, I know that with some jQuery actions, we can add a lot of classes to a particular div:

<div class="cleanstate"></div> 

Let's say that with some clicks and other things, the div gets a lot of classes

<div class="cleanstate bgred paddingleft allcaptions ..."></div> 

So, how I can remove all the classes except one? The only idea I have come up is with this:

$('#container div.cleanstate').removeClass().addClass('cleanstate'); 

While removeClass() kills all the classes, the div get screwed up, but adding just after that addClass('cleanstate') it goes back to normal. The other solution is to put an ID attribute with the base CSS properties so they don't get deleted, what also improves performance, but i just want to know another solution to get rid of all except ".cleanstate"

I'm asking this because, in the real script, the div suffers various changes of classes.

like image 503
DarkGhostHunter Avatar asked Mar 19 '11 16:03

DarkGhostHunter


People also ask

How do you delete multiple classes?

Approach: First select the element to which multiple classes will be added. Then use addClass() method to add multiple classes to the element and removeClass() method to remove multiple classes.

How do you remove a class in CSS?

The syntax for Removing CSS classes to an element:removeClass(class_name);


1 Answers

Instead of doing it in 2 steps, you could just reset the entire value at once with attr by overwriting all of the class values with the class you want:

jQuery('#container div.cleanstate').attr('class', 'cleanstate'); 

Sample: http://jsfiddle.net/jtmKK/1/

like image 102
Yahel Avatar answered Sep 21 '22 04:09

Yahel