vote up 1 vote down star

Hi there!

I'm in a bit of a dilemma. I need to select div tags based on whether their children have a certain class. This is a code example of the DOM structure:

<div id="container">

    <div id="one">
         <p>This is item one</p>
         <p class="special">This is a description</p>
    </div>

    <div id="two">
         <p>This is item one</p>
         <p>This is a description</p>
    </div>

    <div id="three">
         <p>This is item one</p>
         <p class="special">This is a description</p>
    </div>

</div>

So, what I want to select is a div tag that doesn't have a paragraph with a class of "special", and in the example above, that would be second div tag (#two).

Any ideas?

flag

2 Answers

vote up 14 vote down check

You can use the :not and :has selectors:

$('div:not(:has(p.special))')
link|flag
+1 for beating me to it. – geowa4 Oct 12 at 12:37
nice and concise - let jQuery do the legwork for you ;p – Rowan Oct 12 at 12:41
Great, this worked like a charm. Thanks! – Indyber Oct 12 at 13:01
vote up 0 vote down

Try this:

$("div").filter(function() {
    return $(this).children("p.special").length == 0;
})
link|flag

Your Answer

Get an OpenID
or

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