The children() method allows you to search through the child elements of a parent html element within the DOM tree of a web page.
Utilization:
$(selector).children(...).method(...);
Example:
Within a list of ul elements, the color of the first child element will be changed to red.
Interesting Articles