Lets say this is my HTML:
<div id="foo">
<input id="goo" value="text" />
<span id="boo">
</span>
</div>
I would like to be able to determine what tag belongs to a html element.
Example element with id “foo” = div, “goo” = input, “boo” = span …
So something like this:
function getTag (id) {
var element = document.getElementById(id);
return element.tag;
}
HTMLElement.tagName
NOTE: It returns tags in capitals. E.g.
<img />will returnIMG.