How do you find the tag name of an element?
How do you find the tag name of an element? 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 , its tagName property is “IMG” (for HTML documents; it may be cased differently for XML/XHTML documents). How do […]