Simple question, I have an element which I am grabbing via elementById(). How do I check if it has any children?

link|improve this question

feedback

3 Answers

up vote 21 down vote accepted

A couple of ways:

if (element.firstChild) {
    // It has at least one
}

or the hasChildNodes() function:

if (element.hasChildNodes()) {
    // It has at least one
}

or the length property of childNodes:

if (element.childNodes.length > 0) {
    // It has at least one
}

If you only want to know about child elements (as opposed to text nodes, attribute nodes, etc.), you may need a more thorough check:

var hasChildElements, child;
hasChildElements = false;
for (child = element.firstChild;
     child;
     child = child.nextSibling
    ) {

    if (child.nodeType == 1) { // 1 == Element
        hasChildElements = true;
        break;
    }
}

All of this is part of DOM1, and nearly universally supported.

link|improve this answer
feedback

You can check if the element has child nodes element.hasChildNodes(). Beware in Mozilla this will return true if the is whitespace after the tag so you will need to verify the tag type.

https://developer.mozilla.org/En/DOM/Node.hasChildNodes

link|improve this answer
4  
Not just in Mozilla. This is correct behaviour; it's IE that gets it wrong. – bobince Jan 29 '10 at 12:35
feedback
  <script type="text/javascript">

        function uwtPBSTree_NodeChecked(treeId, nodeId, bChecked) {
            //debugger;
            var selectedNode = igtree_getNodeById(nodeId);
            var ParentNodes = selectedNode.getChildNodes();


            var length = ParentNodes.length;

            if (bChecked) {
/*                if (length != 0) {
                    for (i = 0; i < length; i++) {
                        ParentNodes[i].setChecked(true);
                    }
                }*/
            }
            else {
                if (length != 0) {
                    for (i = 0; i < length; i++) {
                        ParentNodes[i].setChecked(false);
                    }
                }
            }
        }



    </script>

<ignav:UltraWebTree ID="uwtPBSTree" runat="server"..........>
<ClientSideEvents NodeChecked="uwtPBSTree_NodeChecked"></ClientSideEvents>
</ignav:UltraWebTree>
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.