Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can i select the first div with a specific class with jquery?

Ex : i want to put some html in the first p tag when i click on the first a.a_preview etc...

<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>

<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>

<a href="#" class="a_preview">Preview</a><br />
<div class="preview_div><p>Some text</p></div>
share|improve this question

1 Answer

up vote 3 down vote accepted
$(".a_preview").click (function (e) {

$(this).nextUntil("a").find("p").html("aaaaa");
});

http://jsbin.com/imavug/edit#javascript,html

share|improve this answer
it works thank you – adokara Dec 10 '11 at 13:13
@adokara p.s. next time use jsbin.com/imavug/2/edit wrappers. that way - youll have isolation to each section and youll have more intuitive way of finding each element. – Royi Namir Dec 10 '11 at 13:17

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.