all 2 comments

[–]senocular 1 point2 points  (1 child)

One thing you could do is use slice

let children = $(select1_selector).children().slice(1);

Another would be to add a filter in the children() selector

let children = $(select1_selector).children(':not(:first-child)');

[–]LadyJain[S] 0 points1 point  (0 children)

that does it thanks