Compruebe si el elemento tiene childs jQuery
if ( $('#myfav').children().length > 0 ) {
// do something
}
Enthusiastic Echidna
if ( $('#myfav').children().length > 0 ) {
// do something
}
if ($('#example').find('#test').length) {
// found!
}