Challenge Target The Children Of An Element Using JQuery - ashish9342/FreeCodeCamp GitHub Wiki
Many HTML elements have children elements from which they inherit properties.
jQuery has a function called children()
that allows you to access the children of whichever element you've selected.
Here's an example of how you would use the children()
function:
$("#left-well").children().css("color", "blue");