<h4 id="hello">임시글씨</h4>
<button class="btn-lg">버튼</button>
<script>
$('.btn-lg').click(function(){
$.ajax({
url : 'https://codingapple1.github.io/hello.txt',
type : 'GET'
}).done(function(데이터){
$('#hello').html(데이터)
});
});
</script>
이렇게 했는데, 버튼 클릭시에 글자가 안바뀝니다. 혹시 틀린 부분이 있나요? 아니면 서버에서 못받아오는건가요?ㅠㅠ