I have a list that at times has more than one child. I'd like to style the parent if contains a number of children. I've tried a few options without success. Any help would be appreciated.

<ol class="parent">
    <li>
        <ol>
            <li>Something</li>
        </ol>
    </li>
</ol>
link|improve this question

if it contains multiple li or a ol containing an ol? And what is receiving the style modification? – mrtsherman Aug 15 '11 at 17:44
The original parent – Zach Shallbetter Aug 17 '11 at 21:04
feedback

2 Answers

up vote 0 down vote accepted

Assuming you want to style the direct parent element, you can do this:

var $matches = $("ol > li > ol > li");
if($matches.length > 1) {
    $matches.parent().addClass("foo");
}
link|improve this answer
feedback
if($element.children('ol').length >= 2){
    $element has at least two 'ol's as children
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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