vote up 4 vote down star
2

I want to change a CSS class of an HTML element in response to an onClick event using javascript.

flag

71% accept rate
3  
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. – David Dorward Oct 13 '08 at 8:18

5 Answers

vote up 8 vote down check

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(/\bMyClass\b/','')

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 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>


link|flag
vote up 1 vote down

You can use node.className like so:

  document.getElementById("blah").className = "cssclass";
link|flag
vote up -8 vote down

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:

function highlight(elm){
  elm.style.backgroundColor ="#345";
  elm.style.color = "#fff";
}
link|flag
1  
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
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
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
2  
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
vote up -3 vote down

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|flag
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
In that context, it isn't the pseudo-protocol - it's a loop label ... only there is no loop for it TO label. – David Dorward Oct 13 '08 at 8:19
vote up -1 vote down

Okay ... you have our permission!

link|flag
Lol, why can't we rate answers as funny like in /.. – Gamecat Oct 12 '08 at 20:31
Wow ... I was up to +3 at one point, but must have dropped fast during dinner. I've got 4 kids and it reminds me of how they "ask" if they're allowed to do something. – Steve Moyer Oct 12 '08 at 21:37

Your Answer

Get an OpenID
or

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