How to reset the style properties to their CSS defaults in javascript?

Calmarius picture Calmarius · Aug 17, 2010 · Viewed 37.9k times · Source

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?

Answer

Richard JP Le Guen picture Richard JP Le Guen · Aug 17, 2010

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