When we are applying a lot of style changes using JavaScript to a single element, phpied & Writing Efficient JavaScript (slide 87) suggests:

instead of applying styles one by one using style.stylename, apply everything in one go using cssText or changing classname as it'll reduce reflows/repaints

Which is better when there's only a single style change?

document.getElementById('myid').style.cssText += ";color:#999;";

OR

document.getElementById('myid').style.color = "#999";

jsperf.com/csstext-vs-styles-single shows that when there's only a single style change, using individual style name is faster than cssText.

Are there any other factors also to be considered?

link|improve this question

42% accept rate
.... nope ..... – Gaby aka G. Petrioli Jun 6 '11 at 15:38
@Gaby: which one do you suggest? individual stylename or cssText? – Anish Jun 6 '11 at 15:42
2  
individual stylename .. since you deal with just one property.. – Gaby aka G. Petrioli Jun 6 '11 at 15:55
1  
One nice thing about cssText is you don't have to camelCase properties like borderBottomColor or fontSize. – kennebec Jun 6 '11 at 18:35
1  
@Anish, yes.. just one reflow.. – Gaby aka G. Petrioli Jun 6 '11 at 22:29
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

I should use the individual stylename in your case, because you are going to change only one style. :)

link|improve this answer
When there's only 1 style change, will the no. of reflows be same in both cases? – Anish Jun 6 '11 at 15:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.