styleSheets collection
Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.
Members
The styleSheets collection has these types of members:
Methods
The styleSheets collection has these methods.
| Method | Description |
|---|---|
| item |
Retrieves an object from a collection. |
| urns |
Retrieves a collection of all objects to which a specified behavior is attached. |
Properties
The styleSheets collection has these properties.
| Property | Description |
|---|---|
|
Sets or retrieves the number of objects in a collection. |
Remarks
Style sheets that are imported using the @import rule and are contained within the style object are available through the imports collection.
Examples
This example shows how to display the titles of the style sheets in the document.
for ( i = 0; i < document.styleSheets.length; i++ )
{
alert("Style sheet " + i + " is titled " + document.styleSheets(i).title);
}
Send comments about this topic to Microsoft
Build date: 11/29/2012