//이벤트 처리 $(document).ready(function (){ $("#my_category .menu-item").hover(function(){ $(this).find("h5").removeClass("fw-nomal"); $(this).find("h5").addClass("fw-semibold"); },function(){ $(this).find("h5").addClass("fw-nomal"); $(this).find("h5").removeClass("fw-semibold"); }); });