hi all,
basically what i want to do is to change the attributes of a class using javascript
for example
.myclass { color: blue }
and there are lots of elements on the page that have class=myclass
Can you do somehting like myclass.color = 'red' to affect all of the elements with that class or do you have to loop through all elements and "manually" change the style attribute(s).
thanks in advance
al
basically what i want to do is to change the attributes of a class using javascript
for example
.myclass { color: blue }
and there are lots of elements on the page that have class=myclass
Can you do somehting like myclass.color = 'red' to affect all of the elements with that class or do you have to loop through all elements and "manually" change the style attribute(s).
thanks in advance
al