Firefox Tomorrow

web api instance method

StyleSheetList: item() method

View on MDN ↗

The item() method of the StyleSheetList interface returns a single CSSStyleSheet object.

Syntax

item(index)

Parameters

  • index
    • : An integer which is the index of the item in the collection to be returned.

Return value

A CSSStyleSheet object, or null if one does not exist for this index.

Examples

In the following example, a for loop prints each individual CSSStyleSheet object to the console, by calling item with the value of i.

let list = document.styleSheets;

for (let i = 0; i < list.length; i++) {
  console.log(list.item(i));
}

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.