I have html with class that always differs depending on amount of elements inside it(ul>li...)
class name has pattern like sf-single-children-* where * always different depending on li's inside it. How do i get this * with javascript, so i could style depending on this number?
Example code:
<ul class='someclass'>
<li class="sf-single-children-* some-other-classes-here-aswell">
<ul style="width: * ">
<li>Item with no children element</li>
<li>Item with no children element</li>
<li>Item with no children element</li>
<li>Item with no children element</li>
<li>Item with no children element</li>
<li>Item with childer element which should not be counted
<ul>
<li>Item with no children element</li>
<li>Item with no children element</li>
<li>Item with no children element</li>
</ul>
</li>
</ul>
</li>
</ul>
The other way how i'd do this its count elements in only parent <ul> But i'm not sure how to do that
$(element).children().lengthto get the number of child elements? – Rory McCrossan Feb 10 at 13:28lielements which don't have aulwithin them? So the answer there would be5- is that right? – Rory McCrossan Feb 10 at 13:38