したがって、以下のようにfind()内で関数を呼び出すことができるかどうかを調べようとしていますが、コンソールに何も返されません。これはfind()で可能ですか、それとも別の方法を見つける必要がありますか?
$(".tdInner1").find(".block", function () {
if( $(this).next().hasClass("continuation") ) {
console.log("yes");
} else {
console.log("no");
}
});