TOC PREV NEXT INDEX

domref



parentStyleSheet


parentStyleSheet returns the stylesheet object in which the current rule is defined.

Syntax

stylesheet = cssRule.parentStyleSheet
 

Parameters

stylesheet is a stylesheet object

Example

if ( bgRule.parentStyleSheet != mySheet ) {
 
   // alien style rule!
 
}
 

Notes

See DOM styleSheet Object for more information about the stylesheet object interface.

Specification

DOM Level 2 Style - cssRule


Netscape Communications
http://developer.netscape.com
TOC PREV NEXT INDEX