CASE-1: , когда известен селектор id=""
или class=""
:
$("#everything_after").nextAll();
//selects any of the next sibling elements, like <div>, <p>, <i>... etc tags.
//--or--
$("#everything_after").nextAll("div");
//selects only the next sibling <div> tags;
CASE-2: при индексепредмет известен:
$("#container > div:nth-child(6)").nextAll();
//--or--
$("#container > div:eq(5)").nextAll();