Я понимаю, что приведенный ниже код не самый эффективный способ захвата элементов, но для примера ...
$('.myFirstClass').each(function(i){
// Here is the first 'THIS' occurrence
$(this).find('.mySecondClass').each(function(j){
// Here is the second 'THIS' occurrence
// How do i access the first occurrence from here?
});
});