show/hide this revision's text 2 deleted 4 characters in body

I would do it this way:

$(function() {
  $("p").hide();
  $("h3").click(function() {
    $(this).nextall().each(function() (this).nextAll().each(function() {
      if (this.tagName == "h3") $(this).is('h3')) {
        return false;
      }
      $(this).toggle();
    }):
  );
  });
});

Returning false from each() ends the chain.

I would also suggest, if possible, structuring your data better to handle this scenario. For example:

<h3 class="question">Why is there no soup for me?</h3>
<div class="answer">
<p>...</p>
<p>...</p>
<p>...</p>
</div>

and then the problem becomes trivial to solve:

$(function() {
  $("div.answer").hide();
  $("h3.question").click(function() {
    $(this).next().toggle();
  });
});
show/hide this revision's text 1

I would do it this way:

$(function() {
  $("p").hide();
  $("h3").click(function() {
    $(this).nextall().each(function() {
      if (this.tagName == "h3") {
        return false;
      }
      $(this).toggle();
    }):
  });
});

Returning false from each() ends the chain.

I would also suggest, if possible, structuring your data better to handle this scenario. For example:

<h3 class="question">Why is there no soup for me?</h3>
<div class="answer">
<p>...</p>
<p>...</p>
<p>...</p>
</div>

and then the problem becomes trivial to solve:

$(function() {
  $("div.answer").hide();
  $("h3.question").click(function() {
    $(this).next().toggle();
  });
});