vote up 1 vote down star

Hi,

I have a element that already has a class:

<div class="someclass">
          <img ... id="image1" name="image1" />
</div>

Now I want to create a javascript function that will add a class to the div (not replace, but add).

How can I do that?

flag

22% accept rate

8 Answers

vote up 10 vote down check

Use the className property of the element. First, put an id on the div so you can easily get a reference.

<div id="div1" class="someclass">
    <img ... id="image1" name="image1" />
</div>

Then

var d = document.getElementById("div1");
d.className = d.className + " otherclass";
link|flag
1  
+1 for answer in JavaScript, as the question requested. Dragging in many thousands of lines of framework for a one-liner is not sensible. – bobince Feb 3 at 14:06
1  
+1 for not pushing a framework down the OP's throat. – Paolo Bergantino Feb 3 at 14:16
If the only work on the whole page that needs to be done with JavaScript is this class name addition, then yes. But I can't see this being the only dynamic part of the page. A library will help with everything else as well. At 30-50kb jQuery is hardly a hit worth discussing. – thenduks Feb 3 at 14:59
"A library will help with everything else as well" - apart from learning JavaScript – meouw Feb 3 at 15:24
What does adding a class to a DOM element have to do with learning the language? document.getElementById('div1').className is as much a library related issue as using jQuery to do the same is. The question was "how can I do that", a thoroughly tested library is the sensible answer. – thenduks Feb 3 at 20:06
show 2 more comments
vote up 0 vote down

When the work I'm doing doesn't warrant using a library, I use these two functions:

function addClass( classname, element ) {
    var cn = element.className;
    //test for existance
    if( cn.indexOf( classname ) != -1 ) {
    	return;
    }
    //add a space if the element already has class
    if( cn != '' ) {
    	classname = ' '+classname;
    }
    element.className = cn+classname;
}

function removeClass( classname, element ) {
    var cn = element.className;
    var rxp = new RegExp( "\\s?\\b"+classname+"\\b", "g" );
    cn = cn.replace( rxp, '' );
    element.className = cn;
}
link|flag
vote up 2 vote down

Just to elaborate on what others have said, multiple CSS classes are combined in a single string, delimited by spaces. Thus, if you wanted to hard-code it, it would simply look like this:

<div class="someClass otherClass yetAnotherClass">
      <img ... id="image1" name="image1" />
</div>

From there you can easily derive the javascript necessary to add a new class... just append a space followed by the new class to the element's className property. Knowing this, you can also write a function to remove a class later should the need arise.

link|flag
vote up 1 vote down

In YUI, if you include yuidom, you can use

YAHOO.util.Dom.addClass('div1','className');

HTH

link|flag
vote up 0 vote down

first, give the div an id. Then, call function appendClass:

<script language="javascript">
  function appendClass(elementId, classToAppend){
    var oldClass = document.getElementById(elementId).getAttribute("class");
    if (oldClass.indexOf(classToAdd) == -1)
    {
      document.getElementById(elementId).setAttribute("class", classToAppend);
    }
}
</script>
link|flag
it will replace the class not append ! Maybe be a line is missing or a oldClass+" "+classToAppend instead of the last classToAppend – Vinze Feb 3 at 14:20
vote up 2 vote down

find your target element "d" however you wish and then:

d.className += ' additionalClass'; //note the space

you can wrap that in cleverer ways to check pre-existance, and check for space requirements etc..

link|flag
vote up 1 vote down

Assuming you're doing more than just adding this one class (eg, you've got asynchronous requests and so on going on as well), I'd recommend a library like Prototype or jQuery.

This will make just about everything you'll need to do (including this) very simple.

So let's say you've got jQuery on your page now, you could use code like this to add a class name to an element (on load, in this case):

$(document).ready( function() {
  $('#div1').addClass( 'some_other_class' );
} );

Check out the jQuery API browser for other stuff.

link|flag
1  
+1 because jQuery is great! – meouw Feb 3 at 20:28
vote up 0 vote down

By using the prototype library I think it's something like this :

$$(".someclass").each(function(element) {
    element.addClassName("otherclass");
});
link|flag
This is jQuery specific though. – Rocco Feb 3 at 14:05
No, this is Prototype specific :p that's why I said "using prototype library" – Vinze Feb 3 at 14:15

Your Answer

Get an OpenID
or

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