In the following situation, I would like to add a class "highlight" to the succeeding div.second when div.first > a is clicked.

html:

<li>
    <div class="first">
        <a href="#">link</a>
    </div>
    <div class="second">
        text to be highlighted
    </div>
</li>
<!--(repeats)-->

js:

$("div.first > a").click(function() {
    $(this).next("div.second").addClass("highlight");   
});

I know its wrong, but I don't know how to do it correctly. Help please.

link|improve this question

40% accept rate
feedback

2 Answers

up vote 1 down vote accepted

.next() finds the next sibling of the current element. Your current element is <a>, which, in this case, has no siblings (the poor thing). Use parent() to retrieve the containing <div>, and then use next() to find <div> that is to be highlighted.

$("div.first > a").click(function() {
    $(this).parent().next("div.second").addClass("highlight");   
});
link|improve this answer
Thanks so much! I've tried to get parent() working by using parent("div.first") and that didn't do it. But yours works like a charm! – Ben Jun 12 '11 at 18:54
@Ben good to hear it solved your problem! Since you seem to be new to SO: welcome! Please consider accepting clairesuzy's or my answer if it has helped you :) – Aron Rotteveel Jun 12 '11 at 18:57
Thank you. SO said I'd have to wait a couple minutes before accepting an answer. Done know :) – Ben Jun 12 '11 at 19:16
feedback
$("div.first > a").click(function() {
    $(this).parent().next("div.second").addClass("highlight");   
});

you need to up one to the a's parent and then get it's next div

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.