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.