I have a document with headings and unordered lists.

How can I use JQuery to select a given heading (by its unique class name) AND all content between that heading and the next heading?

Update:

Your suggestions are great, but aren't what I'm looking for. In the below code, for example, I would like to access only the "h1" with id of "heading2" and everything up to, but not including the "h1" with id of "heading3".

The jquery examples provided above will access everyting after the first "h" tag that is not an "h" tag. ... or, correct me if I'm wrong :)

    <h1 id="heading1">...</h1>
        <ul>...</ul>
        <p>...</p>
        <ul>...</ul>
        <p>...</p>
    <h1 id="heading2" >...</h1>
        <ul>...</ul>
        <p>...</p>
        <ul>...</ul>
        <p>...</p>
    <h1 id="heading3" >...</h1>
        <ul>...</ul>
        <p>...</p>
        <ul>...</ul>
        <p>...</p>
link|improve this question

78% accept rate
feedback

7 Answers

up vote 7 down vote accepted

Perhaps you could start with your desired start-element, and then grab each sibbling as long as it's not the ending tag. When you come across the ending tag, break your loop:

$(document).ready(function(){
  // Alerts [object Object],[object Object],[object Object]
  alert(getAllBetween("h1#heading2","h1#heading3"));
});

function getAllBetween(firstEl,lastEl) {
    var firstElement = $(firstEl); // First Element
    var lastElement = $(lastEl); // Last Element
    var collection = new Array(); // Collection of Elements
    collection.push(firstElement); // Add First Element to Collection
    $(firstEl).nextAll().each(function(){ // Traverse all siblings
    	var siblingID  = $(this).attr("id"); // Get Sibling ID
    	if (siblingID != $(lastElement).attr("id")) { // If Sib is not LastElement
    		collection.push($(this)); // Add Sibling to Collection
    	} else { // Else, if Sib is LastElement
    		return false; // Break Loop
    	}
    });		
    return collection; // Return Collection
}

With the following:

<h1 id="heading1">Heading One</h1>
<p>Paragraph 1A</p>
<p>Paragraph 1B</p>
<h1 id="heading2">Heading Two</h1>
<p>Paragraph 2A</p>
<p>Paragraph 2B</p>
<h1 id="heading3">Heading Three</h1>
<p>Paragraph 3A</p>
<p>Paragraph 3B</p>

So think of it more like "Get All Sibblings Until"

link|improve this answer
Thanks for the JQuery lesson! Worked like a charm. – edt Jan 27 '09 at 19:54
Thanks. This helped solve a nightmare problem with Firefox 3.6.4 and nextUntil() – Robin Fisher Apr 2 '11 at 13:31
feedback

nextUntil

http://api.jquery.com/nextUntil/

link|improve this answer
feedback

$("#secondSelector").prevAll('#firstSelector ~ *")

link|improve this answer
1  
smart. exactly what I needed. – Richard Harrison Nov 23 '10 at 16:03
feedback

Maybe, with

$(selectorForFirstHeading).nextAll().not(selectorForLastHeading).text()

Why do I use text(), because html() will only return the inner html of the first result element.

Regards

link|improve this answer
feedback

If your elements are at the same level, something like this:

<h1 id="heading1">...</h1>
<ul>...</ul>
<p>...</p>
<ul>...</ul>
<p>...</p>
<h1 id="heading2" >...</h1>

i.e. your next heading element is not a child of an element at the same level as the first heading element, you can try this code:

// this will get all the following siblings of <h1 id="heading1"> except those that are headings themselves
var elements = $('#heading1').nextAll().not("h1");
link|improve this answer
Hi, good answer, we have the same idea but you missed to serve the content :) – Ricardo Vega Jan 26 '09 at 20:33
feedback

yeah you're right, this will only avoid the desired selector, maybe it needs to be more detailed:

$(firstSelector).nextAll().not(secondSelector).not($(secondSelector).nextAll()).text()

Regards

link|improve this answer
feedback

The question is a bit old, but here is the solution I use for my projects:

jQuery selector

(function ($) {
    $.fn.between = function (elm0, elm1) {
        var index0 = $(this).index(elm0);
        var index1 = $(this).index(elm1);

        if (index0 <= index1)
            return this.slice(index0, index1 + 1);
        else
            return this.slice(index1, index0 + 1);
    }
})(jQuery);

Usage

$('body').between($('#someid'), $('#someid2')).each(function () {
    // Do what you want.
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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