// 라이브는 주로 이벤트를 동적으로 로드하는 바인딩에 사용됩니다. 요소
// 제품 카탈로그
$(".lm_div_q dd").live({
mouseenter: function() {
$(this).find("strong").addClass(" tj_strong ");
$(this).find("strong").next().slideDown(200); // 드롭다운 상자 표시
},
mouseleave: function() {
$ (this).find("strong").removeClass("tj_strong");
$(this).find("strong").next().slideUp(200) // 드롭 숨기기 -down box
}
});
//Hover는 이벤트를 직접 바인딩합니다
// 제품 카탈로그<br>$(".lm_div_q dd"). hover(function( ){ <br>$(this).find("strong").addClass("tj_strong"); <br>$(this).find("strong").next().stop(true ,true).lideDown(200); // 드롭다운 상자 표시 <br>}, function(){ <br>$(this).find("strong").removeClass("tj_strong"); $(this).find ("strong").next().stop(true,true).slideUp(200); // 드롭다운 상자 숨기기<br>});