<div id="cont">본문 내용...</div> <a href="#cont" class="scroll">Scroll to cont</a>
html
js
jQuery(document).ready(function($){ $(".scroll").click(function(event){ event.preventDefault(); $('html,body').animate({scrollTop:$(this.hash).offset().top}, 500); //offset()함수로 위치를 찾음 }); });