I am setting the style attribute of a text via js element.setAttribute() method with name=style and value="my modifications to the style of text"
it is working well in browsers other than IE ..
In order to make it possible ,what should i do ?
for your information i m modifying these attributes -- text-align,text-decoration,font-style,font-weight,font-size....
I will be happy if someone guides me thank you..
element.style. Something likeelement.setAttribute('text-align')won't work. – Felix Kling Feb 21 '11 at 11:55element.setAttribute('style', 'text-align: center;')but IE doesn't treatstyleas attribute unlike other browsers. – Shadow Wizard Feb 21 '11 at 12:25