September 21, 2001 - Storing Stylesheets in a Collection
September 21, 2001 Storing Stylesheets in a Collection Tips: September 2001
Yehuda Shiran, Ph.D.
|
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
.