[jQuery] Selecting Child from object

[jQuery] Selecting Child from object


If you are in the the middle of an each statement, and you want to
select a child object from the main object you are in what syntax
would you use?
For instance,
$('.selector').each(function(){
//I want to select a child of 'this'
$(this)
});