diff --git a/docs/element-properties.mdx b/docs/element-properties.mdx index bfd5c44..1132153 100644 --- a/docs/element-properties.mdx +++ b/docs/element-properties.mdx @@ -12,9 +12,9 @@ import MDN from "../components/MDNBadge" `Element.tagName: string` -This property returns the **tag name** of any element in uppercase form. This is useful to identify type of a element. +This read-only property on any element returns the **tag name** in uppercase form. This is useful to identify type of a element. -Ex. tagName of `
` element is `"DIV"`. +Ex. `.tagName` of `
` element is `"DIV"`. ```js