cssText
cssText returns the actual text of the style rule.
Syntax
text = cssRule.cssText
Parameters
text is a string containing the style rule text.
Example
if ( myRule.cssText.indexOf("background-color") != -1 ) { bgRule = myRule; } ...Notes
Specification
Netscape Communications http://developer.netscape.com |