I have this selector
self = $('.trim .person:nth-child('+index+')');
self.append('<img src="'+element.profilePic+'" class="profilePic" />');
I then want to use this select a class within
$(self + '.spacer').css('opacity', 0.5);
I also tried
self + $('.spacer').css('opacity', 0.5);