Console.groupCollapsed()

Creates a new inline group in the Web Console. Unlike console.group(), however, the new group is created collapsed. The user will need to use the disclosure button next to it to expand it, revealing the entries created in the group.

Call console.groupEnd() to back out to the parent group.

See Using groups in the console in the console documentation for details and examples.

Note: This feature is available in Web Workers.

Syntax

console.groupCollapsed([label]);

Parameters

label
Label for the group. Optional.

Specifications

Specification Status Comment
Console API
The definition of 'console.groupCollapsed()' in that specification.
Living Standard Initial definition

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
groupCollapsedChrome Full support 6Edge Full support 12Firefox Full support 52IE Full support 11Opera ? Safari Full support 5.1WebView Android Full support 37Chrome Android Full support 18Firefox Android Full support 52Opera Android ? Safari iOS ? Samsung Internet Android Full support 1.0

Legend

Full support
Full support
Compatibility unknown
Compatibility unknown

See also