How can I change a CSS class of an HTML element in response to an onClick event using JavaScript?
| |||||||||||||||||||||
feedback
|
|
To add a class to an element:
To remove a class from an element:
To do that in an onclick event:
Better yet, use a framework (in this example jQuery) which allows you to do the following:
And also:
This is separating HTML markup from your JS interaction logic, which is something that - especially on large/complex applications - can make maintenance significantly easier. | |||||||||||||||||||||
feedback
|
|
You could also just do:
document.getElementById('id').classList.add('class');
document.getElementById('id').classList.remove('class');
| |||||||||||||||||
feedback
|
|
You can use node.className like so:
document.getElementById("blah").className = "cssclass";
| |||
|
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:
So, for example, if I want onclick to add some class the the button I can use this:
By now for sure it would just better to use jQuery. | ||||
|
feedback
|
|
Pure JS:
| |||||
|
feedback
|
|
Wow, surprised there are so many overkill answers here...
| |||||||||
feedback
|
|
it's working for me. So i am sharing my answer.
Thanx. | |||
feedback
|
|
Just to add on information from another popular framework, Google Closures, see their dom/classes class:
One option for selecting the element is using goog.dom.query with a CSS3 selector:
| |||
|
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.
| |||
|
feedback
|
|
The line
should be:
| |||||
feedback
|
|
Change an element's CSS class with JavaScript in ASP.Net
| |||||
feedback
|
|
I would use jQuery and write something like this:
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 | |||
|
feedback
|
|
This is easiest with a library like jQuery:
| |||||||||||||
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:
| |||||||||||||||||||||
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.