Is there an easy way to get a tag name?
For example, if I am given $('a') into a function, I want to get 'a'.
|
Is there an easy way to get a tag name? For example, if I am given |
|||
|
|
You can call prop("tagName"):
Note that tag names are, by convention, returned CAPITALIZED, so this will be equal to "A". |
|||||||
|
|
|
|||
|
|
|
You can use the DOM's
|
|||||||||||||||
|
|
jQuery 1.6+
Older versions
toLowerCase() is not mandatory. |
|||||||||
|