제이쿼리 에러
본문
문제코드
$(function(){
var s_stop = $('#scroll_stop').offset().top;
$('#scr_down').on('click',function(){
$('html,body').animate({ scrollTop: s_stop },800);
})
})
에러내용
Uncaught TypeError: Cannot read property 'top' of undefined
at HTMLDocument.<anonymous> (script.js:33)
var s_stop = $('#scroll_stop').offset().top; << 이문구가 33번째줄입니다
제이쿼리버전 1.11.3 입니다..
top이 잘못됐다는거 같은데 뭐가 잘못됐는지 모르겠습니다..
답변을 작성하시기 전에 로그인 해주세요.