Is there any easy way to remove all classes matching, for example,
color-*
so if I have an element:
<div id="hello" class="color-red color-brown foo bar"></div>
after removing, it would be
<div id="hello" class="foo bar"></div>
Thanks!
|
Is there any easy way to remove all classes matching, for example,
so if I have an element:
after removing, it would be
Thanks! |
|||
|
|
|
The removeClass function takes a function argument since jQuery 1.4.
Live example: http://jsfiddle.net/jimmysv/xa9xS/ |
|||||||||||||
|
|
|||||
|
|
I've written a plugin that does this called alterClass – Remove element classes with wildcard matching. Optionally add classes: https://gist.github.com/1517285
|
|||||||
|
|
You could also use the
|
|||
|
|