Hi guys,
Is it possible to append the content of one CSS class to an element that already uses a different class?
Thanks for the help !
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 !
