아래와 같이 무한동작을 만들었더니, 'Maximum call stack size exceeded error' 경고가 떴다. function move (){ $('.ico').animate({'top':-115},500).animate({'top':-100},500); //애니메이션 1회 동작 함수 예시 move(); }; move(); ➜ 콜백함수를 써서 무한동작을 만들었더니, 경고가 사라졌다!!! function move (){ $('.ico').animate({'top':-115},500, function(){ $(this).animate({'top':-100},500, move) }); }; move(); 왜 이런 차이가 발생했을까? 그 이유는, 콜백함수는 앞의 내용이 종료된 후에 콜백함수 안의 내..