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

Here is my HTML code.

<div id="selected">
    <ul>
            <li>29</li>
            <li>16</li>
            <li>5</li>
            <li>8</li>
            <li>10</li>
            <li>7</li>
    </ul>
</div>

Here, I want to count total number of <li> elements in <div id="selected"></div>. How is it possible using jQuery's .children([selector]).

share|improve this question
2  
nice, basic, straightforward question. Thanks! – noogrub Aug 29 '12 at 16:53

5 Answers

up vote 112 down vote accepted

You can use .length with just a descendant selector, like this:

var count = $("#selected li").length;

If you have to use .children(), then it's like this:

var count = $("#selected ul").children().length;

You can test both versions here.

share|improve this answer

fastest one:

$("div#selected ul li").length
share|improve this answer
This is not the fastest, in fact you slowed it down by adding div on there :) – Nick Craver Nov 27 '10 at 10:28
2  
try it and compare the time – Ali Tarhini Nov 27 '10 at 10:31
1  
It really depends on which browser you use. In many modern browsers, adding the element uses findByElement before finding by id or class, which is slower. Soon this will be a moot point either way though, because all DOM searches will be done using one native function. In any case, a simple getElementById('selected') or $('#selected') would be faster at this point. – RegionalC Dec 10 '12 at 19:45
$("#selected > ul > li").size()

or:

$("#selected > ul > li").length
share|improve this answer
var length = $('#selected ul').children('li').length
// or the same:
var length = $('#selected ul > li').length

You probably could also omit li in the children's selector.

See .length.

share|improve this answer
This will be 0 ;) – Nick Craver Nov 27 '10 at 10:26
1  
@Nick Craver: I skimmed over the HTML too fast ;) – Felix Kling Nov 27 '10 at 10:27
Don't worry. We have correct answer in this page. – lakumg Nov 27 '10 at 10:32
$('#selected ul').children().length;

or even better

 $('#selected li').length;
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.