Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

if (div id=myfav has children){ do something } else { do something else }

The if condition is what's giving me trouble. I tried all the following:

if ( $('#myfav:hasChildren') ) { do something }
if ( $('#myfav').children() ) { do something }
if ( $('#myfav:empty') ) { do something }
if ( $('#myfav:not(:has(*))') ) { do something }
share|improve this question

4 Answers

up vote 135 down vote accepted
if ( $('#myfav').children().length > 0 ) {
     // do something
}

This should work. The children() function returns a JQuery object that contains the children. So you just need to check the size and see if it has at least one child.

share|improve this answer
1  
Thanks for the answer. This is is what worked for me. I knew I was on the right track with the .children(), but didn't know what was wrong with it. Apparently size could be 0, makes sense. – Chris Oct 6 '09 at 18:57
2  
If you add a selector to children, you can also check if an element has children that match a particular selector, like if you want to see if an element has a child of a particular class. – Muhd May 5 '11 at 3:43
8  
minor issue. don't mean to nitpick but children().length should be called instead of size() per jQuery docs here: api.jquery.com/size – Brian Chavez May 7 '11 at 5:06
4  
performance test results in 0.006s – dtrunk Mar 1 '12 at 10:15

Another option, just for the heck of it would be:

if ( $('#myFav > *').length > 0 ) {
     // do something
}

May actually be the fastest since it strictly uses the Sizzle engine and not necessarily any jQuery, as it were. Could be wrong though. Nevertheless, it works.

share|improve this answer
good answer too – Chris Oct 7 '09 at 6:59
your way is perfect! – Alper Oct 18 '11 at 22:43
6  
performance test results in 0.002s – dtrunk Mar 1 '12 at 10:15

This snippet will determine if the element has children using the :parent selector:

if ($('#myfav').is(':parent')) {
    // do something
}

Note that :parent also considers an element with one or more text nodes to be a parent.

Thus the div elements in <div>some text</div> and <div><span>some text</span></div> will each be considered a parent but <div></div> is not a parent.

share|improve this answer
+1 for the informative explanation, although it didn't work out for me since my code is one of those exceptions where I do have spaces and new lines remnants of old removes. Good info though. – Chris Oct 6 '09 at 18:56
1  
Yes, I think this answer is more elegant than S Pangborn's. Both are completely legit though. – KyleFarris Oct 6 '09 at 18:58
1  
@Milo LaMar, I'd suspect there isn't much of a performance difference, but the only way to be sure is to try it! Also, you'd have to remove the space between #myfav and :parent in your example, otherwise the selector isn't the same as what my answer would provide. – Marve Jan 12 '12 at 19:11
3  
performance test results in 0.002s - i prefer this way, because it's best readable... – dtrunk Mar 1 '12 at 10:15
1  
I'm confused, isn't this the best answer? – Andrei Cristian Prodan Oct 1 '12 at 13:30
show 3 more comments

You could use pure JS which is much much faster, especially when having lots of children:

var container = document.getElementById('yourID');
container.childNodes.length > 0;

This is about 340 times faster in this case than using the similar jQuery way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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