vote up 2 vote down star
2

I'd like to check ancestry using two jQuery objects. They don't have IDs, and are only going to be available as jQuery objects (or DOM nodes if you called get()). jQuery's is() only works with expressions, so this code would be ideal but will not work:

var someDiv = $('#div');

$('a').click(function() {
    if ($(this).parents().is(someDiv)) {
        alert('boo');
    }
}

Just want to see if one element is a child of another and I'd like to avoid stepping back into DOM land if possible.

flag

6 Answers

vote up 4 vote down check

You can use the index() method to check if an element exists in a list, so would the following work?

var someDiv = $('#div');

$('a').click(function() {
    if ($(this).parents().index(someDiv) >= 0) {
        alert('boo');
    }
}

From #index reference.

link|flag
Perfect Gareth, thank you! I'd up-vote you, but my meager 11 reputation score prohibits me from doing so. – MichaelThompson Oct 29 '08 at 15:23
vote up 0 vote down

Along those lines, parents() optionally accepts a selector itself:

$('a').click(function() {
  if ($(this).parents("#div").length) {
    alert('boo');
  }
});
link|flag
.parents() only accepts the most basic of selectors (i.e. only selectors describing a single element will work - not selectors describing ancetry such as "p strong"). – Már Örlygsson Oct 29 '08 at 2:45
It works fine for what he's trying to do though. – Dave Ward Oct 29 '08 at 5:33
I simplified my example a bit, so in the actual code I am getting the parent object using stored jQuery references instead of string selectors. – MichaelThompson Oct 29 '08 at 15:22
vote up 0 vote down

One way would be to use the filter function

$('a').click(function() {
    $(this).parents().filter(function() {
       return this == someDiv[0];
    }).each(function() {
       alert('foo');
    })
}

I think you may also be able to get away with using jQuery.inArray

if ($.inArray( someDiv, $(this).parents() ) ) {
        alert('boo');
}
link|flag
vote up 0 vote down

Would you not get the result you want from simply using a CSS selector?

$( '#div a' ).click( function() { ... } );
link|flag
vote up 3 vote down

Checking for (this).parents().index(someDiv) >= 0, as @Gareth suggests, will work just fine.

However, using the jQuery ancestry plugin is way faster / more efficient.

link|flag
Thank you! The ancestry plugin and DOM methods are considerably faster. – MichaelThompson Oct 29 '08 at 15:27
What about giving us a voteup then? ;-) – Már Örlygsson Oct 30 '08 at 0:30
vote up 0 vote down

Try this:

var someDiv = $('#div');

$('a').click(function() {
    if ($.inArray($(this).parents().get(), someDiv.get(0)) {
        alert('boo');
    }
}
link|flag

Your Answer

Get an OpenID
or

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