[jQuery] selecting next()'s until I reach a tag

[jQuery] selecting next()'s until I reach a tag


Is there a way for me to add the next several blocks until I get to a
specific tag?
So let's say the code is:
<h5>title</h5>

description text


description text


<h5>title2</h5>

description text


description text


description text


<h5>title2</h5>

description text


Basically, I want to select all the

tags until I get to the <h5>.
There might be 1

tag, there might be 10 of them, but I want to
traverse this structure to add all

tags.
Right now, I'm doing this to select 1 of the

tags:
    $('h5').each(function(){
        var $this = $(this);
        $this
            .add($this.next());
    });