Designer API
Control the Webflow Designer
element.remove()
Remove element from the canvas.
1element.remove(): Promise<null>
Promise<null>
null
A Promise that resolves to null when the Element is removed from the canvas.
1// Get Selected Element2const el = await webflow.getSelectedElement();34// Remove the selected element5await el?.remove();
Try this example