I am trying to count the child elements of an OL
jQuery :
$(document).ready(function(){
$("#my_select").change(function(){
alert($("#ol3").children.length);
});});
HTML:
<ol id="ol1">
<li class="2">Location 1-1</li>
</ol>
<ol id="ol2">
<li class="15">Location 2-1</li>
<li class="20">Location 2-2</li>
</ol>
<ol id="ol3">
<li class="17">Location 3-1</li>
<li class="16">Location 3-2</li>
<li class="14">Location 3-3</li>
</ol>
I always get the number 2 no matter how many li are there under the ol.
Know what’s going on..?
try
when you do
$("#ol3").children.lengthit returns the number of arguments in the.children()function…try alerting
$("#ol3").childrenand you will get this…where
dandfare the two arguments… that’s why you are always getting 2 in your code when you alert..