HTMLSlotElement.assignedElements()

The assignedElements() method of the HTMLSlotElement interface returns a sequence of the elements assigned to this slot (and no other nodes). If the flatten option is set to true, it also returns the assigned elements of any other slots that are descendants of this slot. If no assigned nodes are found, it returns the slot's fallback content.

Syntax

HTMLSlotElement.assignedElements()
HTMLSlotElement.assignedElements(options)

Parameters

options Optional

An object that sets options for the nodes to be returned. The available options are:

flatten

A Boolean indicating whether to return the assigned elements of any available child <slot> elements (true) or not (false). Defaults to false.

Return value

An array of elements.

Examples

let slots = this.shadowRoot.querySelector('slot');
let elements = slots.assignedElements({flatten: true});

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
assignedElements
65
79
66
No
52
12.1
65
65
66
47
12.2
9.0

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement/assignedElements