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

Possible Duplicate:
Can jQuery provide the tag name?

Hi!

This question is so basic i am ashamed asking but i tried to find the answer for 30 minutes without any result.

How do i find out what kind of element has been clicked in the code below.

$('*').click(function (event) {
 var this_element = $(this).???;
 return false;
})

What i am looking for is to have the this_element variable set to 'a' if it's a link, 'p' if it's a paragraph 'div' if...

Thanks!

share|improve this question
by the way, should include event.stopPropagation(); to stop your click from being passed along to parent elements for no good reason. see the api docs: api.jquery.com/get – ghoppe Feb 25 '10 at 0:46
@ghoppe - return false; in jQuery event handles .stopPropagation() and .preventDefault() – gnarf Feb 25 '10 at 0:55
ah, did not realize! Thank you @gnarf. – ghoppe Feb 25 '10 at 1:05

marked as duplicate by Shog9, gnarf, molf, Jonathan Sampson Feb 25 '10 at 4:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 5 down vote accepted

Try this:

$('*').click(function (event) {
    var this_element = this.tagName.toLowerCase();
    return false;
});

The this pointer refers to the actual element being acted upon. As part of the DOM Level 2 core, all DOM elements have a property called .tagName.

share|improve this answer
Be sure to .toLowerCase() some browsers implement all caps for .tagName while others don't. – gnarf Feb 25 '10 at 0:54
It really depends on what you're doing with the tag name. It may not matter. But fair enough, I'll make the change. – Xavi Feb 25 '10 at 5:06
$(this).get(0).tagName;
share|improve this answer
um, -1 for what? it works: jsbin.com/akohe/edit – ghoppe Feb 25 '10 at 0:31
4  
donno, but it is somewhat redundant - $(this).get(0) should always equal this. – Shog9 Feb 25 '10 at 0:32
1  
only true in this specific case (clicking on an element). $(this) may contain more than one DOM element… – ghoppe Feb 25 '10 at 0:39
2  
Well, sure... If this happened to be a selector string, or an array of elements, or some such. But that's not really relevant to this question. – Shog9 Feb 25 '10 at 0:54

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