If you really mean all the <div>elements in the DOM after the starting point, you first need to find the nested of all your next siblings, then you will need to get the actual next siblings that are <div>elements.
var divs = $('#wrapper').nextAll().find('div');
divs = divs.add('#wrapper ~ div');
source
share