Skip to main content

.find()

Finds the closest child element which matches the selector for each selected element. Goes down the DOM tree until finds a match. If no match is found and empty DoMini object is returned.

.find(String selector): DoMini

let children = $( "div" ).find('.child-class');
console.log( 'Children matching ".child-class": ', children );