Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Instead of individually calling $("#item").removeClass() for every single class an element might have, is there a single function which can be called which removes all CSS classes from the given element?

Both jQuery and raw JavaScript will work.

share|improve this question

5 Answers

up vote 258 down vote accepted
$("#item").removeClass();

Calling removeClass with no parameters will remove all of the item's classes.


You can also use (but is not necessarily recommended, the correct way is the one above):

$("#item").removeAttr('class');
$("#item").attr('class', '');
$('#item')[0].className = '';

If you didn't have jQuery, then this would be pretty much your only option:

document.getElementById('item').className = '';
share|improve this answer

Hang on, doesn't removeClass() default to removing all classes if nothing specific is specified? So

$("#item").removeClass();

will do it on its own...

share|improve this answer
Don't think so: docs.jquery.com/Attributes/removeClass – Isaac Waller Sep 15 '09 at 3:39
2  
yeah: "Removes all or the specified class(es) from the set of matched elements." – da5id Sep 15 '09 at 3:41
3  
@Isaac Waller: it does work. – voyager Sep 15 '09 at 3:48

Just set the className attribute of the real DOM element to '' (nothing).

$('#item')[0].className = ''; // the real DOM element is at [0]

Edit: Other people have said that just calling removeClass works - I tested this with the Google JQuery Playground: http://savedbythegoog.appspot.com/?id=ag5zYXZlZGJ5dGhlZ29vZ3ISCxIJU2F2ZWRDb2RlGIS61gEM ... and it works. So you can also do it this way:

$("#item").removeClass();
share|improve this answer

Of course.

$('#item')[0].className = '';
// or
document.getElementById('item').className = '';
share|improve this answer
Why was this reduced? – David Andres Sep 15 '09 at 3:38

The shortest method

$('#item').removeAttr('class').attr('class', '');
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.