This may be what you are looking for:
$('childElement', $(this))
Basically it will search childElementin the context of the current element this.
See the documentation for the jQuery () function for more information . In particular, the following passage explains the second argument and how it is equivalent to using find:
DOM, . , $(). , , :
$('div.foo').click(function() {
$('span', this).addClass('bar');
});
, clicked .
.find(), $('span', this) $(this).find('span').