vote up 5 vote down star
2

Hi,

I have the following HTML node structure:

<div id="foo">
  <div id="bar"></div>
  <div id="baz">
    <div id="biz">
  </div>
  <span><span>
</div>

How do I count the number of immediate children of "foo", that are of type "div". In the example above, the result should be two ("bar" and "baz").

Cheers, Don

flag

38% accept rate

3 Answers

vote up 15 vote down check
$("#foo > div").size()

Direct children of the element with the id 'foo' which are divs. Then retrieving the size of the wrapped set produced.

link|flag
vote up 2 vote down
$("#foo > div")

selects all divs that are immediate descendants of #foo
once you have the set of children you can either use the size function:

$("#foo > div").size()

or you can use

$("#foo > div").length

Both will return you the same result

link|flag
vote up 1 vote down
$('#foo > div').size()
link|flag

Your Answer

Get an OpenID
or

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