Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

4 Answers

up vote 80 down vote accepted

The removeClass function takes a function argument since jQuery 1.4.

$("#hello").removeClass (function (index, css) {
    return (css.match (/\bcolor-\S+/g) || []).join(' ');
});

Live example: http://jsfiddle.net/jimmysv/xa9xS/

share|improve this answer
Nice. Your jsfiddle uses 'class' as argument name and Firefox complains it's a reserved identifier. – MorganTiley Sep 15 '11 at 17:16
1  
Neato, this helped me a lot just now. – ceejayoz Nov 2 '11 at 18:29
@MorganTiley Thanks for the pointer. I updated the jsfiddle. – Jimmy Nov 19 '11 at 12:20
@ceejayoz Glad I could help! – Jimmy Nov 19 '11 at 12:21
WOW very cool!! – Laguna Jan 19 '12 at 20:05
show 2 more comments
$('div').attr('class',
           function(i, c){
              return c.replace(/\bcolor-\S+/g, '');
           });
share|improve this answer
4  
I like this as it reduces the overhead and gets straight to the point. Why use remove class when attr does the job better? – Angry Dan Sep 16 '11 at 14:36

I've written a plugin that does this called alterClass – Remove element classes with wildcard matching. Optionally add classes: https://gist.github.com/1517285

$( '#foo' ).alterClass( 'foo-* bar-*', 'foobar' )
share|improve this answer
2  
Nice work! This will work perfect for my application! – Barry Chapman Jan 28 '12 at 7:24
Wow this is amazing, I just used this on a Drupal site I am developing. I needed to replace the classes for a menu system to theme it for responsive / mobile widths. Perfect, Bravo! Thank you, it will be a regular plugin in my toolkit. – Danny Englander May 11 '12 at 2:57

You could also use the className property of the element's DOM object:

var $hello = $('#hello');
$('#hello').attr('class', $hello.get(0).className.replace(/\bcolor-\S+/g, ''));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.