Const
Gets the element children of each element in the set of matched elements.
Optional
If specified filter for children.
The children.
$('#fruits').children().length;//=> 3$('#fruits').children('.pear').text();//=> Pear Copy
$('#fruits').children().length;//=> 3$('#fruits').children('.pear').text();//=> Pear
https://api.jquery.com/children/
Gets the element children of each element in the set of matched elements.