Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Append one class to another

Status
Not open for further replies.

Sleidia

Technical User
Joined
May 4, 2001
Messages
1,284
Location
FR
Hi guys,

Is it possible to append the content of one CSS class to an element that already uses a different class?

Code:
#class1 {
font-weight: normal;
}

#class2 {
font-weight: bold;
}

<--! my_element uses #class1 -->
document.my_form.my_element.style += (content of #class2 ) ???

Thanks for the help ! :)
 

Wow ... sorry .... I've found it already ;)

Code:
document.my_form.my_element.className+= ' class2';

;)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top