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.
|
Instead of individually calling Both jQuery and raw JavaScript will work. |
||||
|
|
Calling You can also use (but is not necessarily recommended, the correct way is the one above):
If you didn't have jQuery, then this would be pretty much your only option:
|
||||
|
|
|
Hang on, doesn't removeClass() default to removing all classes if nothing specific is specified? So
will do it on its own... |
|||||||||||
|
|
Just set the
Edit: Other people have said that just calling
|
||||
|
|
|
Of course.
|
|||
|
|