JQuery 질문입니다 ㅠㅠㅠ
본문
$(".Menu01").bind('focusin mouseover', function() {
$(this).find('.subMenu01').stop().slideDown('slow');
});
$(".Menu01").bind('focusout mouseleave', function() {
$(this).find(".subMenu01").stop().slideUp('fast');
});
마우스가 올라가면 슬라이드 다운 되는 메뉴를 구성했습니다.
그런데 이넘이 메뉴마다 마우스를 빠르게 움직이면 아예 작동자체가 안되네요 ㅠㅠ
쓸수도 없고.. 아시는 분 답변 부탁드립니다. ㅠㅠ
답변을 작성하시기 전에 로그인 해주세요.