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

How can I figure out the type of a given XML element with jQuery?

For example, if I want the type of the second child:

XML:

<xml>
  <a>a element</a>
  <b>b element</b>
  <c>c element</c>
</xml>

JS:

var node = $(xml).eq(2);
var nodeType = getNodeType(node);
if (nodeType == 'b') {
   alert('GOT IT');
}


function getNodeType($node) {
   ...
} 
share|improve this question
I think the example here should help: http://api.jquery.com/children/ – Tieson T. Jun 23 '11 at 1:16

1 Answer

up vote 3 down vote accepted

Try using nodeName on the element (not on the jQuery object).

Example: http://jsfiddle.net/2cSpq/

var xml = "<xml><a>a element</a><b>b element</b><c>c element</c></xml>";

var node = $(xml).children().eq(1);
var nodeType = alert(getNodeType(node));
if (nodeType == 'b') {
   alert('GOT IT');
}


function getNodeType($node) {
   return $node[0].nodeName.toLowerCase();  <--- right here
} 

I also used the children()[docs] method to target the nested elements, which would make the b element at index 1, not 2.

The [0] extracts the node from the jQuery object, .nodeName gets the node's name, and .toLowerCase() ensures it is sent to you as the lower case letter you're testing for.

share|improve this answer
awesome thanks – Yarin Jun 23 '11 at 2:16
You're welcome @Yarin. – user113716 Jun 23 '11 at 2:17

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.