How to find the tag name by reference?
var someTag = document.getElementById ("someID");
How to find the name of the tag link someTag?
How to find the tag name by reference?
var someTag = document.getElementById ("someID");
How to find the name of the tag link someTag?
Source: https://ru.stackoverflow.com/questions/199773/
All Articles
tagName
, that is: someTag.tagName - ReinRaus