Document.selectedStyleSheetSet

Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.

The selectedStyleSheetSet property indicates the name of the style sheet set that's currently in use.

Syntax

currentStyleSheetSet = document.selectedStyleSheetSet;

document.selectedStyleSheet = newStyleSheetSet;

On return, currentStyleSheetSet indicates the name of the style sheet set currently in use. You can also set the current style sheet set using this property.

Setting the value of this property is equivalent to calling document.enableStyleSheetsForSet() with the value of currentStyleSheetSet, then setting the value of lastStyleSheetSet to that value as well.

Note: This attribute's value is live; directly changing the disabled attribute on style sheets will affect the value of this attribute.

Example

console.log('Current style sheet set: ' + document.selectedStyleSheetSet);

document.selectedStyleSheetSet = 'Some other style sheet';

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
selectedStyleSheetSet
DeprecatedNon-standard
Chrome Full support 1Edge Full support ≤79Firefox Full support YesIE ? Opera ? Safari ? WebView Android Full support YesChrome Android Full support YesFirefox Android Full support YesOpera Android ? Safari iOS ? Samsung Internet Android Full support Yes

Legend

Full support
Full support
Compatibility unknown
Compatibility unknown
Non-standard. Expect poor cross-browser support.
Non-standard. Expect poor cross-browser support.
Deprecated. Not for use in new websites.
Deprecated. Not for use in new websites.

See also