Simple question, I have an element which I am grabbing via elementById(). How do I check if it has any children?
|
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.), this may work on your target browsers (thank you Florian!):
...but that relies on the If you want to stick to something defined in DOM1 (maybe you have to support really obscure browsers), you have to do more work:
All of that is part of DOM1, and nearly universally supported. It would be easy to wrap this up in a function, e.g.:
|
|||||||||||
|
|
You can check if the element has child nodes |
|||||
|
|
As slashnick & bobince mention,
Edit: for the same functionality, this is a better solution:
|
|||||
|
|
|
||||
|