How can I change a CSS class of an HTML element in response to an onClick event using JavaScript?

link|improve this question

77% accept rate
48  
There's no such thing as a CSS class. HTML has classes. CSS has rule-sets (which might apply to a given element) and class selectors, allow a rule-set to be applied to an element based on its HTML classes. – Quentin Oct 13 '08 at 8:18
8  
"The class attribute is mostly used to point to a class in a style sheet. However, it can also be used by a JavaScript (via the HTML DOM) to make changes to HTML elements with a specified class." -w3schools.com/tags/att_standard_class.asp – Triynko Apr 7 '11 at 18:11
7  
In regard to @Quentin comment, while his semantics may be correct, the fact remains that the HTML class attribute is "mostly used to point to a class [selector] in a style sheet.". – Triynko Jul 11 '11 at 17:47
45  
People have been calling them "CSS classes" since before W3Schools existed. Microsoft calls them that in various places (Google it). The term may be technically incorrect, but it has been common usage for just about as long as CSS has existed and everyone knows what you're referring to when you say "CSS class". And the truth is, for a long time CSS was practically the only thing people used them for. "CSS class" is not a nonsense term, it is jargon with a specific meaning. – Nate C-K Nov 15 '11 at 12:41
3  
No such thing as CSS classes? They must be called "rule-sets"? And I thought I had already seen the worst nitpicking on SO… – Mk12 Apr 25 at 22:21
show 1 more comment
feedback

14 Answers

up vote 364 down vote accepted

To add a class to an element:

document.getElementById("MyElement").className += " MyClass";

To remove a class from an element:

document.getElementById("MyElement").className = 
   document.getElementById("MyElement").className.replace
      ( /(?:^|\s)MyClass(?!\S)/ , '' )
/* code wrapped for readability - above is all one statement */

To do that in an onclick event:

<script type="text/javascript">
    function changeClass()
    {
        // code examples from above
    }
</script>
...
<button onclick="changeClass()">My Button</button>


Better yet, use a framework (in this example jQuery) which allows you to do the following:

$j('#MyElement').addClass('MyClass');

$j('#MyElement').removeClass('MyClass');

$j('#MyElement').toggleClass('MyClass');

And also:

<script type="text/javascript">
    function changeClass()
    {
        // code examples from above
    }

    $j(':button:contains(My Button)').click(changeClass);
</script>
...
<button>My Button</button>

This is separating HTML markup from your JS interaction logic, which is something that - especially on large/complex applications - can make maintenance significantly easier.

link|improve this answer
1  
Excellent description! Thanks! – Helgi Hrafn Gunnarsson Apr 27 '10 at 20:16
14  
Great answer Peter. One question... why is it better to do with with JQuery than Javascript? JQuery is great, but if this is all you need to do - what justifies including the entire JQuery libray instead of a few lines of JavaScript? – mattstuehler May 15 '11 at 15:32
3  
@mattstuehler 1) the phrase "better yet x" often means "better yet (you can) x". 2) To get to the heart of the matter, jQuery is designed to aid in accessing/manipulating the DOM, and very often if you need to do this sort of thing once you have to do it all over the place. – Barry May 24 '11 at 16:46
1  
One bug with this solution: When you click on your button multiple times, it will add the Class of " MyClass" to the element multiple times, rather than checking to see if it already exists. Thus you could end up with an HTML class attribute looking something like this: class="button MyClass MyClass MyClass" – Web_Designer Sep 13 '11 at 16:28
1  
If you're trying to remove a class 'myClass' and you have a class 'prefix-myClass' the regex you gave above for removing a class will leave you with 'prefix-' in your className :O – jinglesthula Sep 15 '11 at 5:26
show 7 more comments
feedback

You could also just do:

document.getElementById('id').classList.add('class');
document.getElementById('id').classList.remove('class');
link|improve this answer
5  
This should be the accepted answer! – cxd Oct 9 '11 at 2:41
7  
I believe this is HTML5 dependent. – johnthexiii Oct 27 '11 at 17:16
1  
You’ll need Eli Grey’s classList shim. – elliottcable Nov 14 '11 at 14:34
5  
worth noting this doesn't work in IE versions less than 8.. – Lloyd Jan 24 at 10:24
feedback

You can use node.className like so:

  document.getElementById("blah").className = "cssclass";
link|improve this answer
feedback

In one of my old projects that did not use jQuery, I built the following functions for adding, removing, and checking if element has class:

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, ' ');
        }
    }

So, for example, if I want onclick to add some class the the button I can use this:

<script type="text/javascript">
    function changeClass(btn, cls)
    {
      if(!hasClass(btn, cls))
      {
        addClass(btn, cls);
      }
    }
</script>
...
<button onclick="changeClass(this, "someClass")">My Button</button>

By now for sure it would just better to use jQuery.

link|improve this answer
feedback

Pure JS:

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, ' ');
    }
}
function replaceClass(ele, oldClass, newClass){
    if(hasClass(ele, oldClass)){
        removeClass(ele, oldClass);
        addClass(ele, newClass);
    }   
    return;
}

function toggleClass(ele, cls1, cls2){
    if(hasClass(ele, cls1)){
        replaceClass(ele, cls1, cls2);
    }else if(hasClass(ele, cls2)){
        replaceClass(ele, cls2, cls1);
    }else{
        addClass(ele, cls1);
    } 
}
link|improve this answer
   
feedback

Wow, surprised there are so many overkill answers here...

<div class="firstClass" onclick="this.className='secondClass'">
link|improve this answer
2  
yes, but unobtrusive javascript is better practice.. – Lloyd Jan 24 at 10:27
1  
I would say unobtrusive javascript is terrible practice for writing example code... – Gabe Apr 13 at 14:50
feedback

it's working for me. So i am sharing my answer.

function setCSS(eleID) { 

var currTabElem = document.getElementById(eleID); 

currTabElem.setAttribute("class", "some_class_name"); 
currTabElem.setAttribute("className", "some_class_name"); 
}

Thanx.

link|improve this answer
Excellent answer! Just left to add : Set for each CSS class name for selector to specify a style for a group of class elements – Roman Polenov May 8 at 11:19
feedback

Just to add on information from another popular framework, Google Closures, see their dom/classes class:

goog.dom.classes.add(element, var_args)

goog.dom.classes.addRemove(element, classesToRemove, classesToAdd)

goog.dom.classes.remove(element, var_args)

One option for selecting the element is using goog.dom.query with a CSS3 selector:

var myElement = goog.dom.query("#MyElement")[0];
link|improve this answer
feedback

Couple of minor notes and tweaks on the regex from above:

You'll want to do it globally in case the class list has the class name more than once. And, you'll probably want to strip spaces from the ends of the class list and convert multiple spaces to one space to keep from getting runs of spaces. None of these things should be a problem if the only code dinking with the class names uses the regex below and removes a name before adding it. But. Well, who knows who might be dinking with the class name list.

This regex is case insensitive so that bugs in class names may show up before the code is used on a browser that doesn't care about case in class names.

var s = "testing   one   four  one  two";
var cls = "one";
var rg          = new RegExp("(^|\\s+)" + cls + "(\\s+|$)", 'ig');
alert("[" + s.replace(rg, ' ') + "]");
var cls = "test";
var rg          = new RegExp("(^|\\s+)" + cls + "(\\s+|$)", 'ig');
alert("[" + s.replace(rg, ' ') + "]");
var cls = "testing";
var rg          = new RegExp("(^|\\s+)" + cls + "(\\s+|$)", 'ig');
alert("[" + s.replace(rg, ' ') + "]");
var cls = "tWo";
var rg          = new RegExp("(^|\\s+)" + cls + "(\\s+|$)", 'ig');
alert("[" + s.replace(rg, ' ') + "]");
link|improve this answer
feedback

The line

document.getElementById("MyElement").className = document.getElementById("MyElement").className.replace(/\bMyClass\b/','')

should be:

document.getElementById("MyElement").className = document.getElementById("MyElement").className.replace('/\bMyClass\b/','');
link|improve this answer
2  
Incorrect. The RegEx is delimeted by the forward slashes. Adding quotes causes it to fail in IE, returning the string of the class you're trying to remove rather than actually removing the class. – Dylan Aug 14 '11 at 21:46
feedback

Change an element's CSS class with JavaScript in ASP.Net

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
   If Not Page.IsPostBack Then
      lbSave.Attributes.Add("onmouseover", "this.className = 'LinkButtonStyle1'")
      lbSave.Attributes.Add("onmouseout", "this.className = 'LinkButtonStyle'")
      lbCancel.Attributes.Add("onmouseover", "this.className = 'LinkButtonStyle1'")
      lbCancel.Attributes.Add("onmouseout", "this.className = 'LinkButtonStyle'")
   End If
End Sub    
link|improve this answer
14  
I knew there was a reason I hated working with ASP.NET. – iandisme Jun 7 '11 at 14:44
feedback

I would use jQuery and write something like this:

jQuery(function() {
    jQuery("#some-element").click(function() {
        jQuery(this).toggleClass("clicked");
    });
});

This code adds a function to be called when an element of the id some-element is clicked. The function appends clicked to the element's class attribute if it's not already part of it, and removes it if it's there.

Yes you do need to add a reference to the jQuery library in your page to use this code, but at least you can feel confident the most functions in the library would work on pretty much all the modern browsers, and it will save you time implementing your own code to do the same.

Thanks

link|improve this answer
feedback

This is easiest with a library like jQuery:

<input type="button" onClick="javascript:test_byid();" value="id='second'" />

<script>
function test_byid()
{
    $("#second").toggleClass("highlight");
}
</script>
link|improve this answer
3  
What does the javascript: pseudo-protocol do in a script-event ... It seems totally stupid to tell the javascript-interpretator, that it should treat script in a script-event as script !-) Only use of the javascript: pseudo-protocol is where you instead would use an url !o] – roenving Oct 12 '08 at 20:20
1  
In that context, it isn't the pseudo-protocol - it's a loop label ... only there is no loop for it TO label. – Quentin Oct 13 '08 at 8:19
2  
Actually, that is not a pseudo-protocol, it is interpreted as a JavaScript label, like what you can use in a loop. One could easily do onClick="myScriptYo:do_it();". But, please, don't do it. – kzh Mar 9 '11 at 20:32
feedback

No offense, but it's unclever to change class on-the-fly as it forces the CSS interpreter to recalculate the visual presentation of the entire web page.

The reason is that it is nearly impossible for the CSS interpreter to know if any inheritance or cascading could be changed, so the short answer is:

Never ever change className on-the-fly !-)

But usually you'll only need to change a property or two, and that is easily implemented:

function highlight(elm){
    elm.style.backgroundColor ="#345";
    elm.style.color = "#fff";
}
link|improve this answer
4  
i've never experienced any performance issues with switching CSS classes myself. I think whatever performance hit there might be, it's far outweighed by the messiness of having styles/presentation mixed up in your javascript. – nickf Oct 12 '08 at 20:46
2  
Hrm, obviously you never tested it ... In a realtime application consisting of thousands of rows nested with other elements I recognized a delay of several seconds, remaking it only to change properties it wasn't possible to recognize delay ... – roenving Oct 12 '08 at 20:51
2  
Why would you even want thousands of rows nested with other elements? Also, what operating system & browser was this delay with? – Peter Boughton Oct 12 '08 at 21:49
14  
If changing a className is causing noticeable performance problems, you have much bigger problems in the structure and design of your page/app. If not, shaving off a few milliseconds is not a good reason to pollute your application logic with styles. – eyelidlessness Oct 13 '08 at 3:33
8  
this is the worst idea ever. changing classes is by far and away the easiest and cleanest way to update your CSS on the fly. – Jason Dec 8 '09 at 22:19
show 1 more comment
feedback

protected by Community Oct 26 '11 at 15:51

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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