I have a span tag and that holds some n number of span tags.. can I get the number of span tags available with in the parent span using Jquery.
example:
<span class="x">
<span id="1">one</span>
<span id="2">two</span>
<span id="3">three</span>
</span>
now i should find the count of number of span tags inside the parent span and my output is 3 according to the above scenario.
please help me..
my version :)
$('span.x > span').length
$("span.x").children("span").size()
Demo: http://jsfiddle.net/AZXv3/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With