vote up 2 vote down star

I feel like this should be really easy to do, but I'm stumped. I need a way for Javascript to determine the type of an HTML element. It has the id, but the element itself could be a div, a form field, a fieldset, etc. Can anyone tell me how to do this?

flag

56% accept rate

2 Answers

vote up 5 vote down check

I think nodeName is the attribute you are looking for. For example:

var elt = document.getElemementById('foo');
alert(elt.nodeName);
link|flag
vote up 6 vote down

What about element.tagName?

link|flag
According to timestamps you beat me by less than 1 second! – eyelidlessness Oct 31 '08 at 17:32
I even managed to throw in some extraneous english. Crikey! – Brian Cline Oct 31 '08 at 17:34
1  
From QuirksMode: My advice is not to use tagName at all. nodeName contains all functionalities of tagName, plus a few more. Therefore nodeName is always the better choice. – bdukes Oct 31 '08 at 17:38

Your Answer

Get an OpenID
or

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