참고로 css 태그가 jquery lib 가져오는 .off(): 이벤트 핸들러를 제거합니다. Click me .ajax(): AJAX 요청을 보냅니다. $.ajax({ url: "example.php", method: "POST", data: { name: "John", location: "Boston" } }) .done(function(response) { console.log("Data received:", response); }) .fail(function(xhr, status, error) { console.error("AJAX request failed:", error); }); .each(): 선택한 요소 집합에 대해 반복 작업을 수행합니다. $("ul li").each(functio..