No, but you can use the method filter()to filter the object itself:
$(obj).filter('.className')...
$(obj).filter('[name=obj_name]')...
Or, if you want to find children with such qualities:
$(obj).find('.className')...
$(obj).find('[name=obj_name]')...
Or an alternative syntax findthat gives objas a function context $():
$('.className', obj)...
$('[name=obj_name]', obj)...
source
share