jQuery nextAll -- Click on h-element toggles all p-elements until next h - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T06:06:07Zhttp://stackoverflow.com/feeds/question/1079938http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h1jQuery nextAll -- Click on h-element toggles all p-elements until next hChristoph2009-07-03T15:54:28Z2009-07-03T21:25:29Z
<p>Hi, i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this:</p>
<pre><code><h3>The First Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<h3>The Second Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
</code></pre>
<p>How can I toggle all p elements belonging to a certain question? My JS toggles ALL following p elements on the page:</p>
<pre><code>$(document).ready(function(){
$("p").hide();
$("h3").click(function(){
$(this).nextAll("p").toggle();
});
});
</code></pre>
<p>(I cannot use div's or classes). Thank you for any help!</p>
http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h/1079960#10799605Answer by cletus for jQuery nextAll -- Click on h-element toggles all p-elements until next hcletus2009-07-03T16:00:20Z2009-07-03T21:25:29Z<p>I would do it this way:</p>
<pre><code>$(function() {
$("p").hide();
$("h3").click(function() {
$(this).nextAll().each(function() {
if ($(this).is('h3')) {
return false;
}
$(this).toggle();
});
});
});
</code></pre>
<p>Returning false from each() ends the chain.</p>
<p>I would also suggest, if possible, structuring your data better to handle this scenario. For example:</p>
<pre><code><h3 class="question">Why is there no soup for me?</h3>
<div class="answer">
<p>...</p>
<p>...</p>
<p>...</p>
</div>
</code></pre>
<p>and then the problem becomes trivial to solve:</p>
<pre><code>$(function() {
$("div.answer").hide();
$("h3.question").click(function() {
$(this).next().toggle();
});
});
</code></pre>
http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h/1079969#10799695Answer by tvanfosson for jQuery nextAll -- Click on h-element toggles all p-elements until next htvanfosson2009-07-03T16:02:34Z2009-07-03T16:02:34Z<p>The best way to do this is using each and iterating until you get to the next element that should stop the iteration. Returning false during an each stops the iteration. Using filter allows you to check the type of the element in the iteration and respond appropriately.</p>
<pre><code>$(function() {
$("p").hide();
$("h3").click(function() {
$(this).nextAll().each( function() {
if ($(this).filter('h3').length) {
return false;
}
$(this).filter('p').toggle();
});
});
});
</code></pre>
http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h/1080212#10802120Answer by ScottE for jQuery nextAll -- Click on h-element toggles all p-elements until next hScottE2009-07-03T17:16:16Z2009-07-03T17:16:16Z<p>Here is an interesting solution that doesn't use .each()</p>
<pre><code>$("h3").click(function() {
var idx = $("h3,p").index(this);
var nextIdx = ($("h3,p").index($(this).nextAll("h3")));
var nextPs = (nextIdx == -1) ? $("h3,p").length - idx : nextIdx - idx;
$(this).nextAll("p:lt(" + (nextPs - 1) + ")").toggle();
});
</code></pre>
<p>I'm looking for the next Ps by index. Not sure how practical this is, but it was a good exercise.</p>