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?
|
|
Hi, I have a element that already has a class:
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?
|
|||
|
|
|
|
Use the className property of the element. First, put an id on the div so you can easily get a reference.
Then
|
||||||||||||||
|
|
|
When the work I'm doing doesn't warrant using a library, I use these two functions:
|
||
|
|
|
|
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:
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. |
||
|
|
|
|
|
||
|
|
|
|
first, give the div an id. Then, call function appendClass:
|
||
|
|
|
find your target element "d" however you wish and then:
you can wrap that in cleverer ways to check pre-existance, and check for space requirements etc.. |
|||
|
|
|
|
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):
Check out the jQuery API browser for other stuff. |
||||
|
|
|
By using the prototype library I think it's something like this :
|
||