jquery 스크롤 자동 이동 (바로) $(document).ready(function(){ const offset = $("#target").offset(); $('html, body').animate({scrollTop: offset.top}, 0); }); - 이동하고 싶은 엘리먼트에 id 선언, - 위 처럼 id='target'으로 설정 또는 #target 정보에 선언된 ID로 변경, - class, element name 상관 없음. jquery 스크롤 자동 이동 (부드럽게) $(document).ready(function(){ const offset = $("#target").offset(); $('html, body').animate({scrollTop: offset.top}, 500); }..