#jquery #children() .children() .children() selects the child elements of any element. grammar .children( [selector] ) for example $( 'div' ).children().css( 'color', 'blue' ); will make the color of the child elements of the div element blue. $( 'div' ).children( 'p.bl' ).css( 'color', 'blue' ); will change the color of the p element that has bl as the class value among the child elements of th..