I looked through documentation and there seems to be no way to get an array of children of a given node...

something like

 if (parentNode.hasChildren() == true) {
        alert('yay');

        if (parentNode.children == null) {
            alert('what the???');
        }
 }

this code will output 'yay', (i use a node that has children) but parentNode.children is null because 'what the??' is also being output....

Is there any way to get an array of children of a particular node?

In the case above, i would expect the parentNode to have an array of children, but there seems to be no way to get the children, only add and remove them.

Is my understanding correct?

link|improve this question

58% accept rate
feedback

2 Answers

up vote 0 down vote accepted

It's parentNode.childList

link|improve this answer
thanks! interestingly enough, it's not mentioned in the documentation at all:) unless I missed it. – sarsnake Feb 17 '10 at 23:04
feedback

try to use

parentNode.children()

jQuery children API

link|improve this answer
i did already. no luck – sarsnake Feb 12 '10 at 22:39
feedback

Your Answer

 
or
required, but never shown

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