Simple question, I have an element which I am grabbing via elementById(). How do I check if it has any children?
|
feedback
|
|
A couple of ways:
or the
or the
If you only want to know about child elements (as opposed to text nodes, attribute nodes, etc.), you may need a more thorough check:
All of this is part of DOM1, and nearly universally supported. | ||||
|
feedback
|
|
You can check if the element has child nodes | |||||
feedback
|
| ||||
|
feedback
|