|
September 21, 2001 Storing Stylesheets in a Collection Tips: September 2001
Yehuda Shiran, Ph.D.
|
|
You can access style definitions in their object form. The STYLE tags are represented as a zero-based collection, document.styleSheets. If your page looks like this:
then you'll have two elements in the document.styleSheets collection. The first STYLE definition is stored in document.styleSheets[0], while the second STYLE definition is stored in document.styleSheets[1]. In this case, document.styleSheets.length is 2.
People who read this tip also read these tips: Look for similar tips by subject: |