A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/en-US/docs/Web/API/Element/tagName below:

Element: tagName property - Web APIs

Element: tagName property

Baseline Widely available

The tagName read-only property of the Element interface returns the tag name of the element on which it's called.

For example, if the element is an <img>, its tagName property is IMG (for HTML documents; it may be cased differently for XML/XHTML documents). Note: You can use the localName property to access the Element's local name — which for the case in the example is img (lowercase).

Value

A string indicating the element's tag name. This string's capitalization depends on the document type:

For Element objects, the value of tagName is the same as the value of the nodeName property the element object inherits from Node.

Examples HTML
<span id="born">When I was born…</span>
JavaScript
const span = document.getElementById("born");
console.log(span.tagName);

In XHTML (or any other XML format), the original case will be maintained, so "span" would be output in case the original tag name was created lowercase. In HTML, "SPAN" would be output instead regardless of the case used while creating the original document.

Specifications Browser compatibility See also

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.4