Question

On a php generated page there are several elements like this:

<td class="defaultTDStyle" style="color:userDefinedCustomColor" id="myTDId"></td>

So there is a default style and I apply several extra styles that override the style defined in the CSS.

Is there a way to remove these added styles from javascript? It seems the obj.style.color="default" and obj.style.color="auto" not works. How can I reset the color to the CSS default from javascript?

Was it helpful?

Solution

If recollection serves, obj.style.color="" should work... I don't know if it's right though.

OTHER TIPS

Set the style property values to the empty string:

 obj.style.color = "";
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top