Lets say that I have a HTML that looks like this:
1 2>
If that's your actual markup, you can easily use the native property firstChild.
$('.aaa').each(function(){ var x = this.firstChild });
It is a widely supported property.