私はまだjQueryに比較的慣れておらず、ホバーでdiv内のいくつかのスパンに含まれているテキストを非表示にしてから、ホバーアウトで再度表示しようとしています。比較的簡単にできるような気がしますが、あまり成功していません。ありがとうございました!
$(".resultBox").hover(function() {
// Perform actions only if targeted result box it is not enlarged
if($(this).height() === RESULTBOX_DEF_HEIGHT && $(this).width() === RESULTBOX_DEF_WIDTH)
{
// Toggle the highlight class matching the target box
var targetBoxId = $(this)[0].id;
$(this).toggleClass(targetBoxId + "BoxHighlight");
// Hide all text in the spans within this box
}
});