vote up 0 vote down star

Hi, Please help... How can I code at Jquery, "Selecting a div's links but not child divs' links of that div? Thanks. Best Regards.

flag
An example would be nice. – Gumbo Jan 13 at 11:24

4 Answers

vote up 4 vote down

use the direct child selector >

e.g

$('div>a')

UPDATE: to appease Mr RoBorg

If you do have anchors inside nested elements inside the first div then the following will work. This uses a filter to ensure that the parent div is indeed the div you are targetting rather than a nested div.

Demo

  var firstDivAnchors = $('div a').filter( function(){
        return $(this).parents('div:first').is( '#yourDiv' );
  });
link|flag
Not quite... this won't get <div><span><a>... which the question suggests it should – Greg Jan 13 at 11:30
he said a divs links, not a div spans links. – redsquare Jan 13 at 11:40
vote up 1 vote down

I don't remember quite well, but doesn't children() does this work?

$(thisDiv).children('a')

In docs.jquery.com it reads: children() Get a set of elements containing all of the unique immediate children of each of the matched set of elements.

link|flag
Yeah children or > is the same - Direct Children – redsquare Jan 13 at 12:14
true, but as far as I know the difference is that using children doesn't use a regex to deconstruct the selector, but both are good approaches. – Ricardo Vega Jan 13 at 18:30
vote up 0 vote down

If there is a specific div you want to target, you can try:

$("div#mydiv a :not(div a)");

EDIT: It would be great if you post some more context (HTML) :)

link|flag
that will always give 0 results – redsquare Jan 13 at 11:57
It is working on my site (www.viajeros.com). Try it in firebug: $("div#footer a :not(div a)"); – Danita Jan 13 at 11:58
I think it works by virtue of CSS selectors weight: "div#something" weights more than only "div" – Danita Jan 13 at 11:59
see pastebin.me/496c817fe0c7e – redsquare Jan 13 at 12:00
@Danita - you need to check your markup at w3c, many errors (240+) which will mean strange selector results – redsquare Jan 13 at 12:03
show 4 more comments
vote up 0 vote down

[It's solved] Thanks too much to everybody... Especially to Redsquare... You solved my problem. Best regards to everybody.

link|flag
tick my answer!! – redsquare Jan 13 at 14:03

Your Answer

Get an OpenID
or

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