Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

5 Answers

up vote 118 down vote accepted

You can call prop("tagName"):

$("a").prop("tagName");

Note that tag names are, by convention, returned CAPITALIZED, so this will be equal to "A".

share|improve this answer
6  
AS of jQuery 1.6, this should be .prop. – Rocket Hazmat Apr 16 '12 at 16:12
please fix... @tilleryj – user1122069 Jul 18 '12 at 18:46

As of jQuery 1.6 you should now call prop:

$target.prop("tagName")

See http://api.jquery.com/prop/

share|improve this answer

You can use the DOM's nodeName property:

$(...)[0].nodeName
share|improve this answer
Thanks. Works great - although I'll use the more jQueryish version because I'm in a jQuery world at the moment. – configurator Mar 18 '11 at 2:28
pure JS solutions (like this one) are generally superior to jQuery ones especially if they do not suffer from browser compatibility problems or are much more verbose. – Steven Lu Jul 25 '12 at 16:24
5  
... and specifically because of those browser incompatibility issues, the jQuery ones are often superior if someone is picking a solution and isn't well-versed in what browser-incompatibilities to watch out for. ;) – Scott Stafford Aug 22 '12 at 13:37
I consider this superior because it doesn't matter what the jQuery version is, this solution works on all versions. +1 – Stijn de Witt Sep 24 '12 at 14:54
1  
particularly if you are in a each()-like situation, where you have to cast the element back to a jquery object to get a property that was already there, like $(this).prop('tagname'). this.nodeName is often more efficient. +1 – pike Nov 29 '12 at 12:24

jQuery 1.6+

jQuery('selector').prop("tagName").toLowerCase()

Older versions

jQuery('selector').attr("tagName").toLowerCase()

toLowerCase() is not mandatory.

share|improve this answer
Why are you doing new String? – Rocket Hazmat Apr 16 '12 at 16:14
Because toLowerCase() is a method of String – TBS Apr 25 '12 at 13:35
2  
tagName is already a string. – Rocket Hazmat Apr 25 '12 at 13:37

This is yet another way:

$('selector')[0].tagName
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.