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

in jquery, if i have the reference of an element, how can i know what kind of element is it, like an input or an dropdown ? is there any way to find out?

Duplicate:

http://stackoverflow.com/questions/341900/how-can-i-determine-the-element-type-of-a-matched-element-in-jquery

share|improve this question
3  
Duplicate: stackoverflow.com/questions/341900/… – Ólafur Waage Mar 3 '09 at 22:06
3  
May be a duplicate, but it has a better answer, and the other one is tagged badly. – Laura Hansen Sep 20 '12 at 21:41

1 Answer

up vote 315 down vote accepted

The following will return true if the element is an input:

$("#elementId").is("input")

or you can use the following to get the name of the tag:

$("#elementId").get(0).tagName
share|improve this answer
15  
When using $("#elementId").get(0).tagName the tagName will be in all caps - TR, DIV etc etc – Jarede Oct 18 '12 at 14:41

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.