function() 에러 왜일까요..(ajax)
본문
<script>
$(function() { <<<<<------ 에러
setInterval(function() {
$.ajax({url: './count.php', success: function(data){
var seconds = data;
if (seconds == "100")
location.reload();
}});
}, 1* 1000);
});
</script>
1초마다 count.php 를 확인해서 100이 되면 페이지 리셋을 하려고 합니다.
그런데 작동이 안되서 크롬에서 열어보면...
$(function() { <<<<<------ 에러표시가 되어 있습니다.
잘못작성된건가요?
!-->
답변을 작성하시기 전에 로그인 해주세요.