■ jQuery가 지원하는 이벤트 함수 $(selector).click(function) : 클릭 이벤트 $(selector).dblclick(function) : 더블클릭 이벤트 $(selector).focus(function) : 포커스 이벤트 $(selector).mouseover(function) : 마우스 오버 이벤트 ■ jQuery가 지원하는 효과 $(selector).hide() : 선택된 요소를 감춤 $(selector).show() : 선택된 요소를 보임 $(selecto..