Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this HTML structure:

<div class="start">
  <div class="someclass">
    <div class="catchme">
      <div="nested">
        <div class="catchme"> <!-- STOP! no, no catchme's within other catchme's -->
        </div>
      </div>
    </div>
    <div class="someclass">
      <div class="catchme">
      </div>
    </div>
  </div>
  <div class="otherclass">
    <div class="catchme">
    </div>
  </div>
</div>

I am looking for a JQuery structure that returns all catchme's within my 'start' container, except all catchme's that are contained in a found catchme. In fact I only want all 'first-level' catchme's regardless how deep they are in the DOM tree.

This is something near, but not really fine:

var start = $('.start');
// do smething
$('.catchme:first, .catchme:first:parent + .catchme', start)

I sort of want to break further traversing down the tree behind all found elements. Any ideas?

share|improve this question

3 Answers

up vote 3 down vote accepted

Will this do?

$('.catchme:not(.catchme .catchme)');
share|improve this answer
Great. That's thinking out of the box. I looked for finding the elements and not for excluding the wrong ones. Thank you alot. – Sebastian P.R. Gingter Jun 17 '10 at 16:31

Would something like this work?

$('.catchme :not(.catchme)', start)
share|improve this answer
This wouldn't work. It will return all elements descending from .catchme that are not .catchme. OP has an element called nested that would be returned, and it wouldn't actually return the top level .catchme elements. – user113716 Jun 17 '10 at 15:13

You can use .filter() and .parents():

$('.catchme').filter(function(){
    return $(this).parents('.catchme').length == 0;
};

This will select only those catchme elements that don't have a catchme element as ancestor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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