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) {
...
}