Nest element as last child

element.append(newElement)

Insert a new element onto the page as the last child of the target element.

Syntax

1element.append(newElement: ElementPreset | Component ): Promise<AnyElement>

Parameters

  • newElement: webflow.elementPresets.<preset> - The new element to be inserted into the hierarchy. This element is derived from the webflow.elementPresets object, which contains all Webflow elements that can be inserted onto the canvas.

Returns

Promise<AnyElement>

A Promise that resolves to an AnyElement object.

AnyElement represents the various element types available in a Webflow project. See a full list of supported element types in our Designer Extension type definitions.

Example

1// Get Selected Element
2const el = await webflow.getSelectedElement();
3
4// Check if element supports child elements
5if (el?.children) {
6
7 // Append newElement as a child to of the selected element
8 const newElement = await el?.append(webflow.elementPresets.DivBlock)
9
10 // Print element Details
11 console.log(JSON.stringify(newElement))
12
13}

Designer Ability

Designer AbilityLocaleBranchWorkflowSitemode
canDesignPrimaryMainCanvasDesign