vote up 2 vote down star

Typically, for styles that have to be applied dynamically to HTML objects with JS, we set it as an attribute using "setAttribute()"

What about this "outline" CSS property? How can I set that onto an object with JS? Unless there is a way to dynamically add CSS to the document?

flag

1 Answer

vote up 7 vote down check

You can change most CSS values using the following code:

document.getElementById('idofelement').style.outline='value';

or

object.style.cssproperty='value';

Here is what W3 has to say about it.

link|flag
Oh its a value of the "style" attribute! ... style="outline:none;" – Jeremy Rudd Jun 7 at 16:11
I guess that would be the HTML equivalent, yeah. – Sam152 Jun 8 at 0:18

Your Answer

Get an OpenID
or

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