How can I do remove all classes from an element except certain classes. I'm assuming we can't use not with removeClass(). Let say I have a <div class="aa bb cc dd ee ff"></div> and I want to remove all classes except aa dd. How can I do this.
| |||
|
feedback
|
|
Why don't you just replace the class attribute with the classes that you want like so
| |||
|
feedback
|
|
To make it a little cleaner, you could create a little extension.
Then you could use it like
Heres an example: http://jsfiddle.net/9xhND/ UPDATE Using Brad Christie's logic, the update will now only keep classes that were originally there and not add new classes. http://jsfiddle.net/9xhND/1/
| |||||
feedback
|
|
You can remove all and add needed ones back:
Note: Calling | |||||||
feedback
|
|
so
| |||||||||||
feedback
|
|
One way you can do it is to just overwrite all classes with the class(es) you want to keep. So, if your div has an id of "myDiv", then you could do:
| |||
|
feedback
|
|
If you know what classes you want to keep you can just re-add them (as others have already shown). I'll assume though that it's not known whether those classes are already applied, so I'll take it a step further:
| |||
|
feedback
|
|
jQuery actually provides a callback parameter to the removeClass method, so you could use a simple javascript regular expression to return all the classes except the ones you don't want to remove:
This way you don't add classes 'aa' and 'bb' if they don't already exist. You can see it in action here: http://jsfiddle.net/sr86u/3/ | |||
|
feedback
|
not:– GusDeCooL Oct 19 '11 at 18:43"aa dd"enough? – alf Oct 19 '11 at 18:43