특정 div등으로 스크롤 하기
$(document).ready(function () { $('html, body').animate({ scrollTop: $('#div').offset().top }, 400); //또는 'fast', 'slow' }); setTimeout(function(){ var offset = $("#divfrm").offset(); $('html, body').animate({scrollTop : (offset.top-20)}, 350); }, 400);