vote up 1 vote down star

I want to do this:

e.className = t;

Where t is the name of a style I have defined in a stylesheet.

flag

57% accept rate

3 Answers

vote up 2 vote down

Not only that works, but it's even a best practice.

You definitively want to separate the data format (xHTML) from the design (CSS) and the behaviour (javascript).

So it's far better to just add and remove classes in JS according to event while the esthetic concerns are delegated to css styles.

E.G : Coloring an error message in red.

CSS

.error
{
    color: red;
}

JS

var error=document.getElementById('error');
error.className='error';

N.B :

  • This snippet is just an example. In real life you would use js just for that.
  • document.getElementById is not always interoperable. Better to use a JS framework to handle that. I personally use JQuery.
link|flag
vote up 17 vote down

If e is a reference to a DOM element and you have a class like this: .t {color:green;} then you want reference the class name as a string:

e.className = 't';
link|flag
vote up 2 vote down

Yes, that works (with the class name as a string, as jonah mentioned). Also, you can set style attributes directly on an object, using the DOM Level 2 Style interface. e.g.,

button.style.fontFamily = "Verdana, Arial, sans-serif";

where button is (presumably) a button object. :-)

link|flag

Your Answer

Get an OpenID
or

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