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

I've got several elements on a HTML page which have the same class - but they're different element types. I want to find out the tag name of the element as I loop over them - but .attr doesn't take "tag" or "tagname".

Here's what I mean. Consider these elements on a page:

<h1 class="rnd">First</h1>
<h2 id="foo" class="rnd">Second</h2>
<h3 class="rnd">Third</h3>
<h4 id="bar" class="rnd">Fourth</h4>

Now I want to run something like this to ensure that my elements all have an id if one wasn't already defined:

$(function() {
  $(".rnd").each(function(i) {
    var id = $(this).attr("id");
    if (id === undefined || id.length === 0) {
      // this is the line that's giving me problems.
      // .attr("tag") returns undefined
      $(this).attr("id", "rnd" + $(this).attr("tag") + "_" + i.toString());
    }
  });
});

The result I would like would be that the H2 and H4 elements would then have an id of

rndh2_1
rndh4_3

respectively.

Any ideas on how I can discover the tag name of the element represented by "this"?

share|improve this question
1  
Maybe answer is here: stackoverflow.com/a/8355251/271103 – Hakan KOSE Jul 26 '12 at 11:54

10 Answers

up vote 93 down vote accepted
$(this).attr("id", "rnd" + $(this).attr("tag") + "_" + i.toString());

should be

$(this).attr("id", "rnd" + this.nodeName.toLowerCase() + "_" + i.toString());
share|improve this answer
16  
You'll need to use this.nodeName.toLowerCase(), as most DOM representations of HTML documents automatically uppercase the nodeName. – NickFitz Oct 7 '09 at 15:27
both this.nodeName and this.tagName seem to work for me. Thanks all! – BigPigVT Oct 7 '09 at 15:50
5  
+1 for mentioning nodeName. Sometimes, jQuery is one step too far :-) – Serge - appTranslator Jul 5 '11 at 9:46
2  
+1 jQuery is() doesn't do the job because in the case of h1, h2, etc there are 6 different cases you have to handle if using is(). – Konstantin D - Infragistics Nov 19 '12 at 9:51

You could try this:

if($(this).is('h1')){
  doStuff();
}

See the docs for more on is().

share|improve this answer
7  
To whom it may concern: if you downvote my answer, please tell me why so I can improve it and learn for future SO-answers. Thanks. – middus Feb 13 '11 at 21:25
2  
I hate it too. Anyway I upvoted because nodeName returns a string that, depending browser, is upper cased or not. – Marcel Falliere Apr 14 '11 at 19:49
1  
Assume the following: You don't just have a small selection of possible tags, but it could be any of 100+ html tags. Then you'd need to write: $(this).is('sometag') a 100+ times. I assume this is why some people downvoted your answer. – ximi Mar 1 '12 at 20:09

Since I've hit this question once before and it didn't help me in my case (I didn't have a this, but instead had a jQuery selector instance). Calling get() will get you the HTML element, by which you can get the nodeName as mentioned above.

this.nodeName; // In a event handler, 'this' is usually the element the event is called on

or

$('.hello:first-child').get(0).nodeName; // Use 'get' or simply access the jQuery Object like an array
$('.hello:first-child')[0].nodeName;     // will get you the original DOM element object
share|improve this answer
1  
You're the man! – Hein du Plessis May 12 '11 at 15:08
1  
first helpful one on the page – John B Jul 19 '12 at 19:57
Exactly what I was looking for, very helpful - thanks :-) – TonyR Aug 24 '12 at 12:33

You could also use $(this).prop('tagName'); if you're using jQuery 1.6 or higher.

share|improve this answer
This is exactly what I needed. In my design, I had the jquery element handy, but not the original HTML DOM element. This works for me. – Gilthans May 12 '12 at 19:56
I think this is the exact answer that answers the subject of this question. – Anitha Mar 8 at 11:56

You could use:

this.tagName

share|improve this answer

I think you cannot use the nodeName in jQuery since nodeName is a DOM property and jQuery itself do not have a either a nodeName function or property. But based on the respondent who first mentioned about this nodeName stuff, this is how I was able to resolve the problem:

this.attr("id", "rnd" + this.attr("nodeName") + "_" + i.toString());

NOTE: this here is a jQuery object.

share|improve this answer

Since this is a question you come along on google using jquery tagname first child as a query I'll post another example:

<div><p>Some text, whatever</p></div>

$('div').children(':first-child').get(0).tagName); // ...and not $('div:first-child')[...]

The jquery result is an (uppercase) tagname: P

share|improve this answer

Consider the fastest FILTER method:

$('.rnd').filter('h2,h4')

return:

[<h2 id=​"foo" class=​"rnd">​Second​</h2>​, <h4 id=​"bar" class=​"rnd">​Fourth​</h4>​]

so:

$('.rnd').filter('h2,h4').each(function() { /*...$(this)...*/ });
share|improve this answer

You can get html element tag name on whole page.

You could use:

        $('body').contents().on("click",function () {
          var string = this.tagName;
          alert(string);
         });
share|improve this answer
you can try:
jQuery(this).get(0).tagName;
or
jQuery(this).get(0).nodeName;

note: replace this with your selector (h1, h3 or ...)

share|improve this answer

protected by Quentin Feb 11 at 11:02

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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