Get Tag

element.getTag()

Retrieve the HTML tag of the element.

This method also works on other Webflow elements; see Get HTML tag.

Syntax

element.getTag(): Promise<null | string>

Returns

  • Promise<String> : If the element has a tag, a promise that resolves to the tag value.
  • Promise<null>: If the element does not have a tag, a promise that resolves to null

Example

// Get All Elements and find first DOM Element
const elements = await webflow.getAllElements()
const DOMElement = elements.find(element => element.type === "DOM")
if (DOMElement?.type === "DOM") {
// Get DOM Element's Tag
const tag = await DOMElement.getTag()
console.log(tag)
} else {
console.log('No DOM Element Found')
}

Designer Ability

Checks for authorization only

Designer AbilityLocaleBranchWorkflowSitemode
canAccessCanvasAnyAnyAnyAny