
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
안녕하세요 강의 대로 진행하고 있는데 hey 함수가 사용하지 않는 함수로 뜨면서 콘솔창에 버튼을 눌러도 실행이 안됩니다ㅠㅠ
어떻게 해야 할까요?

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
function hey(){
$.ajax({
type: "GET",
url: "/test?title_give=봄날은간다",
data: {},
success: function(response){
console.log(response)
}
})
}
</script>
</head>
<body>
<h1> 나의 첫 웹페이지! </h1>
<button> 버튼을 만들자! </button>
</body>
</html>
