Hi,

I have a few thousand elements to which I have a style class assigned ( customdiv ). I would like to change a style property ( fontsize ) of all of these elements at once using scripting. I know I can use a java loop, but this will be really slow. I know that I could also change the className attribute of each element, but 1) this comes back to the slow loop issue, and 2) I would need a million classes for each combination of values.

So what I think I need to do, is find out how to change the class directly using script so that all the elements are changed immediately without the need for nasty loops.

Can anybody help me? If this is not possible, I would like to know that too....

Thanks!