<spanclass="category"><ahref="http://api.jquery.com/category/selectors/"title="View all posts in Selectors">Selectors</a>><ahref="http://api.jquery.com/category/selectors/hierarchy-selectors/"title="View all posts in Hierarchy">Hierarchy</a></span>
<dd>A selector to filter elements that are the following siblings of the first selector.</dd>
</dl></li></ul>
<pclass="desc"><strong>Description: </strong>Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.</p>
<divclass="longdesc"><p>The notable difference between (<code>prev + next</code>) and (<code>prev ~ siblings</code>) is their respective reach. While the former reaches only to the immediately following sibling element, the latter extends that reach to all following sibling elements.</p></div>
<h4><spanclass="desc">Finds all divs that are siblings after the element with #prev as its id. Notice the span isn't selected since it is not a div and the "niece" isn't selected since it is a child of a sibling, not an actual sibling.</span></h4>