How my dear friends :

How can I find an element (such as div) after (immediately) another specific element? (not sibling - next() can not help in this sutuation)!

thanks for answer

link|improve this question

Post an example situation. – webarto May 1 '11 at 13:48
after how? – Šime Vidas May 1 '11 at 13:57
feedback

3 Answers

up vote 0 down vote accepted

Use nextAll() with a filter : http://api.jquery.com/nextAll/

Here's a demo : http://jsfiddle.net/JRPGh/1/

<div class='start'></div>
<div></div>
<div></div>
<div class='start'></div>


$('.start').nextAll('.start:first').css('background', 'red');
link|improve this answer
why this code always returns null -> alert($(this).nextAll('div:first').html()); – MoonLight May 1 '11 at 17:08
You need to post the html and your js before I can answer that. My code works so the method is correct. – JohnP May 1 '11 at 18:11
feedback
$("#element").find("div").text("Hello");
link|improve this answer
i want to use this selector in qtip2 / i think text attribute is not good for this purpose / i have many elements with tooltips (in div) after them (individually)/ i want to find tooltip div for all of them by one code - mean $(this).????????????? – MoonLight May 1 '11 at 13:57
feedback

Maybe you are looking for the adjacent sibling selector:

http://www.w3.org/TR/CSS2/selector.html#adjacent-selectors

link|improve this answer
how can i get id from $(this) for use it in adjacent-selectors? – MoonLight May 1 '11 at 17:09
Post some sample HTML and what element you are trying to locate. – Steve Wellens May 1 '11 at 18:18
feedback

Your Answer

 
or
required, but never shown

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