How can I change a JS element to see if it is a node or an empty variable?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 3 down vote accepted

It depends on what you mean by an empty variable.

If you mean it hasn't had a value assigned, you can check for undefined

alert( someVariable !== undefined );

Or if you know it has a value, and need to see if it is an element, you could do something like this:

alert( someVariable && someVariable.nodeType );  

Or if you need to verify that it is a type 1 element, you could do this:

alert( someVariable && someVariable.nodeType === 1 );  

This eliminates text nodes, attribute nodes, comments, and a bunch of others.

link|improve this answer
The nodeValue could be blank/empty/null, no? !!(document.createElement('p')).nodeValue – meder Sep 23 '10 at 17:46
@meder - It was a mistype. – user113716 Sep 23 '10 at 17:47
feedback

A node? A DOM element? it would have a .nodeType property.

Regarding nodeValue for the other answer, the nodeValue can be empty but a node will always have a nodeType.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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