vote up 5 vote down star

I have a div with id="a" that may have any number of classes attached to it, from several groups. Each group has a specific prefix. In the javascript, I don't know which class from the group is on the div. I want to be able to clear all classes with a given prefix and then add a new one. If I want to remove all of the classes that begin with "bg", how do I do that? Something like this, but that actually works:

$("#a").removeClass("bg*");
flag

5 Answers

vote up 5 vote down check

With jQuery, the the actual DOM element is at index zero, this should work

$('#a')[0].className = $('#a')[0].className.replace(/\bbg.*?\b/g, '');
link|flag
vote up 5 vote down

Hi, http://www.mail-archive.com/jquery-en@googlegroups.com/msg03998.html says:

...and .removeClass() would remove all classes...

It works for me ;)

cheers

link|flag
This works great for me, thanks! – Brandon Montgomery Apr 28 at 13:25
vote up 0 vote down

$("#a").get(0).classname is the same as document.getElementById("a").className

link|flag
vote up 0 vote down

Prestaul's answer was helpful, but it didn't quite work for me. The jQuery way to select an object by id didn't work. I had to use

document.getElementById("a").className

instead of

$("#a").className
link|flag
In JQuery, this would work: $("#a").get(0).className – georgebrock Sep 12 '08 at 1:47
vote up 4 vote down

You don't need any jQuery specific code to handle this. Just use a RegExp to replace them:

$("#a").className = $("#a").className.replace(/\bbg.*?\b/g, '');

You can modify this to support any prefix but the faster method is above as the RegExp will be compiled only once:

function removeClassByPrefix(el, prefix) {
    var regx = new RegExp('\\b' + prefix + '.*?\\b', 'g');
    el.className = el.className.replace(regx, '');
    return el;
}
link|flag

Your Answer

Get an OpenID
or

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