I want to change a CSS class of an HTML element in response to an onClick event using javascript.
|
2
|
|||||
|
|
|
To add a class to an element:
To remove a class from an element:
To do that in an onclick event:
Better yet, use jQuery which allows you to do the following:
And also:
|
||
|
|
|
|
Okay ... you have our permission! |
||||
|
|
|
This is easiest with a library like jQuery:
|
||||
|
|
|
No offense, but it's unclever to change class on-the-fly as it forces the css-interpretator to recalculate the visual presentation of the entire webpage ... -- the reason is that it is nearly impossible for the css-interpretator 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:
|
||||||||||||
|
|
|
You can use node.className like so:
document.getElementById("blah").className = "cssclass";
|
||
|
|
