Baseline Widely available
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 returns a sequence of both the elements assigned to this slot, as well as the elements assigned to any other slots that are descendants of this slot. If no assigned elements are found, it returns the slot's fallback content.
assignedElements()
assignedElements(options)
Parameters
options
Optional
An object that sets options for the nodes to be returned. The available options are:
flatten
A boolean value indicating whether to return the assigned elements of any available child <slot>
elements (true
) or not (false
). Defaults to false
.
An array of elements.
Exampleslet slots = this.shadowRoot.querySelector("slot");
let elements = slots.assignedElements({ flatten: true });
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.3