+ 2
How can I apply css to strings in javascript
Applying css to javascript strings
2 odpowiedzi
+ 5
HTML strings or Javascript strings passed to the DOM... ? In both cases;
yourstring.css.property = value
E.g
par.style.color = "#547";
+ 2
Thanks Maz.. It solved my problem