Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dynamically add/remove style in javascript

Tags:

javascript

Is there a way in any browser to add/remove class names? For example, if I have a div with class names and I just want to remove/add 'name2' is there a way to do that?

Thanks, rodchar

like image 840
Rod Avatar asked Feb 04 '26 18:02

Rod


1 Answers

If you can use jQuery:

to remove:

$('#div1').removeClass('name2')

to add:

$('#div1').addClass('name2')

If you can't use jQuery, I found this url

http://snipplr.com/view/3561/addclass-removeclass-hasclass/

function hasClass(ele,cls) {
    return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

function addClass(ele,cls) {
    if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}

function removeClass(ele,cls) {
    if (hasClass(ele,cls)) {
        var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
        ele.className=ele.className.replace(reg,' ');
    }
}

Honestly, I haven't used the non-jquery approach but it seems enough

like image 144
Claudio Redi Avatar answered Feb 06 '26 12:02

Claudio Redi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!