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..

link|improve this question

This question is possibly the same. You might get ideas from there. – erickb Feb 21 '11 at 11:21
All the "attributes" you listed are CSS properties and should be set on element.style. Something like element.setAttribute('text-align') won't work. – Felix Kling Feb 21 '11 at 11:55
@Felix he was trying with element.setAttribute('style', 'text-align: center;') but IE doesn't treat style as attribute unlike other browsers. – Shadow Wizard Feb 21 '11 at 12:25
@Shadow Wizard: Ah I see. – Felix Kling Feb 21 '11 at 12:26
feedback

2 Answers

up vote 1 down vote accepted

Another way for IE which "preserve" the ordinary syntax of CSS is cssText property:

element.style.cssText = "text-align: center; text-decoration: underline; font-size: 120%;";

Official documentation: http://msdn.microsoft.com/en-us/library/ms533698(v=vs.85).aspx

link|improve this answer
feedback

Just avoid setAttribute. It does nothing that can't be done though other methods.

element.style.textAlign = 'left';

for example.

That said, you are almost certainly better off predefining your styles and then causing them to be applied with:

element.className += 'someClass';

… or a library that implements addClass and removeClass methods.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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