September 21, 2001 - Storing Stylesheets in a Collection | WebReference

September 21, 2001 - Storing Stylesheets in a Collection

Yehuda Shiran September 21, 2001
Storing Stylesheets in a Collection
Tips: September 2001

Yehuda Shiran, Ph.D.
Doc JavaScript

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:

<STYLE TYPE="text/css">
....
</STYLE>
<STYLE TYPE="text/css">
....
</STYLE>
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.